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 }}) diff --git a/resources/profiles/BBL.json b/resources/profiles/BBL.json index 1f3eaff22f..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.29", + "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,10357 +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": "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" - }, - { - "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": "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" - }, - { - "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": "BETA ASA @base", - "sub_path": "filament/BETA/BETA ASA @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": "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" - }, - { - "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 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" - }, - { - "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": "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" - }, - { - "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 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" - }, - { - "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" - }, - { - "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": "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" - }, - { - "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": "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" - }, - { - "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" - }, - { - "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": "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" - }, - { - "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": "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" - }, - { - "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": "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" - }, - { - "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": "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" - }, - { - "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": "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" - }, - { - "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": "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" - }, - { - "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 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" - }, - { - "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" - }, - { - "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" - }, - { - "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" - }, - { - "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": "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" - }, - { - "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": "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" - }, - { - "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": "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" - }, - { - "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": "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" - }, - { - "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 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" - }, - { - "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": "Fiberon PETG-rCF08 @BBL X1", - "sub_path": "filament/Polymaker/Fiberon PETG-rCF08 @BBL X1.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": "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" - }, - { - "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": "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" - }, - { - "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": "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" - }, - { - "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": "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" - }, - { - "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": "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" - }, - { - "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": "addnorth PLA Premium Silk", - "sub_path": "filament/addnorth/addnorth PLA Premium Silk.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": "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" - }, - { - "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": "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" - }, - { - "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": "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" - }, - { - "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": "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" - }, - { - "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": "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" - }, - { - "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": "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" - }, - { - "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": "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" - } - ], - "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 060e0a2d2c..f224e40b89 100644 Binary files a/resources/profiles/BBL/Bambu Lab A1 mini_cover.png and b/resources/profiles/BBL/Bambu Lab A1 mini_cover.png differ diff --git a/resources/profiles/BBL/Bambu Lab A1_cover.png b/resources/profiles/BBL/Bambu Lab A1_cover.png index e6a3358061..93f7121ace 100644 Binary files a/resources/profiles/BBL/Bambu Lab A1_cover.png and b/resources/profiles/BBL/Bambu Lab A1_cover.png differ diff --git a/resources/profiles/BBL/Bambu Lab A2L_cover.png b/resources/profiles/BBL/Bambu Lab A2L_cover.png index 970d63c4e4..513fa6fdaa 100644 Binary files a/resources/profiles/BBL/Bambu Lab A2L_cover.png and b/resources/profiles/BBL/Bambu Lab A2L_cover.png differ diff --git a/resources/profiles/BBL/Bambu Lab H2C_cover.png b/resources/profiles/BBL/Bambu Lab H2C_cover.png index 2e4a6e97da..6dfddf5ef6 100644 Binary files a/resources/profiles/BBL/Bambu Lab H2C_cover.png and b/resources/profiles/BBL/Bambu Lab H2C_cover.png differ diff --git a/resources/profiles/BBL/Bambu Lab H2D Pro_cover.png b/resources/profiles/BBL/Bambu Lab H2D Pro_cover.png index d45e231794..3eb7b4cc07 100644 Binary files a/resources/profiles/BBL/Bambu Lab H2D Pro_cover.png and b/resources/profiles/BBL/Bambu Lab H2D Pro_cover.png differ diff --git a/resources/profiles/BBL/Bambu Lab H2D_cover.png b/resources/profiles/BBL/Bambu Lab H2D_cover.png index 3f3a099bc7..753fbe31aa 100644 Binary files a/resources/profiles/BBL/Bambu Lab H2D_cover.png and b/resources/profiles/BBL/Bambu Lab H2D_cover.png differ diff --git a/resources/profiles/BBL/Bambu Lab H2S_cover.png b/resources/profiles/BBL/Bambu Lab H2S_cover.png index 70a048d50a..d2c5718d95 100644 Binary files a/resources/profiles/BBL/Bambu Lab H2S_cover.png and b/resources/profiles/BBL/Bambu Lab H2S_cover.png differ diff --git a/resources/profiles/BBL/Bambu Lab P1P_cover.png b/resources/profiles/BBL/Bambu Lab P1P_cover.png index 78c0d5d115..566ce21456 100644 Binary files a/resources/profiles/BBL/Bambu Lab P1P_cover.png and b/resources/profiles/BBL/Bambu Lab P1P_cover.png differ diff --git a/resources/profiles/BBL/Bambu Lab P1S_cover.png b/resources/profiles/BBL/Bambu Lab P1S_cover.png index 04d179dd05..38ec69bb85 100644 Binary files a/resources/profiles/BBL/Bambu Lab P1S_cover.png and b/resources/profiles/BBL/Bambu Lab P1S_cover.png differ diff --git a/resources/profiles/BBL/Bambu Lab P2S_cover.png b/resources/profiles/BBL/Bambu Lab P2S_cover.png index 30982b863a..febba125ee 100644 Binary files a/resources/profiles/BBL/Bambu Lab P2S_cover.png and b/resources/profiles/BBL/Bambu Lab P2S_cover.png differ diff --git a/resources/profiles/BBL/Bambu Lab X1 Carbon_cover.png b/resources/profiles/BBL/Bambu Lab X1 Carbon_cover.png index d8b089524c..eab8a6d5c6 100644 Binary files a/resources/profiles/BBL/Bambu Lab X1 Carbon_cover.png and b/resources/profiles/BBL/Bambu Lab X1 Carbon_cover.png differ diff --git a/resources/profiles/BBL/Bambu Lab X1E_cover.png b/resources/profiles/BBL/Bambu Lab X1E_cover.png index 5ae4c807d6..1daaf9c3a9 100644 Binary files a/resources/profiles/BBL/Bambu Lab X1E_cover.png and b/resources/profiles/BBL/Bambu Lab X1E_cover.png differ diff --git a/resources/profiles/BBL/Bambu Lab X1_cover.png b/resources/profiles/BBL/Bambu Lab X1_cover.png index 7673774115..5655a9f83c 100644 Binary files a/resources/profiles/BBL/Bambu Lab X1_cover.png and b/resources/profiles/BBL/Bambu Lab X1_cover.png differ diff --git a/resources/profiles/BBL/Bambu Lab X2D_cover.png b/resources/profiles/BBL/Bambu Lab X2D_cover.png index fa4b9cf8fe..7478f9007f 100644 Binary files a/resources/profiles/BBL/Bambu Lab X2D_cover.png and b/resources/profiles/BBL/Bambu Lab X2D_cover.png differ diff --git a/resources/profiles/BBL/bbl-3dp-A1M.stl b/resources/profiles/BBL/bbl-3dp-A1M.stl index d31997c36a..ccdc7982e0 100644 Binary files a/resources/profiles/BBL/bbl-3dp-A1M.stl and b/resources/profiles/BBL/bbl-3dp-A1M.stl differ diff --git a/resources/profiles/BBL/bbl-3dp-H2C.stl b/resources/profiles/BBL/bbl-3dp-H2C.stl index 81e7321c25..0936bd1d33 100644 Binary files a/resources/profiles/BBL/bbl-3dp-H2C.stl and b/resources/profiles/BBL/bbl-3dp-H2C.stl differ diff --git a/resources/profiles/BBL/bbl-3dp-H2D.stl b/resources/profiles/BBL/bbl-3dp-H2D.stl index cf4a3db0f0..5c81ba64bb 100644 Binary files a/resources/profiles/BBL/bbl-3dp-H2D.stl and b/resources/profiles/BBL/bbl-3dp-H2D.stl differ diff --git a/resources/profiles/BBL/bbl-3dp-O1S.stl b/resources/profiles/BBL/bbl-3dp-O1S.stl index 151303d573..d69a50bcd6 100644 Binary files a/resources/profiles/BBL/bbl-3dp-O1S.stl and b/resources/profiles/BBL/bbl-3dp-O1S.stl differ diff --git a/resources/profiles/BBL/bbl-3dp-X1.stl b/resources/profiles/BBL/bbl-3dp-X1.stl index 08675caed6..6823cdb229 100644 Binary files a/resources/profiles/BBL/bbl-3dp-X1.stl and b/resources/profiles/BBL/bbl-3dp-X1.stl differ diff --git a/resources/profiles/BBL/bbl-3dp-hotend.stl b/resources/profiles/BBL/bbl-3dp-hotend.stl index 6b2aba77fa..4138160ec0 100644 Binary files a/resources/profiles/BBL/bbl-3dp-hotend.stl and b/resources/profiles/BBL/bbl-3dp-hotend.stl differ diff --git a/resources/profiles/BBL/cli_config.json b/resources/profiles/BBL/cli_config.json index 5aa010c355..4aea0a0404 100644 --- a/resources/profiles/BBL/cli_config.json +++ b/resources/profiles/BBL/cli_config.json @@ -1,767 +1,851 @@ { - "printer": { - "Bambu Lab A1": { - "machine_limits": { - "cli_safe_acceleration_e": "0,0", - "cli_safe_acceleration_extruding": "0,0", - "cli_safe_acceleration_retracting": "0,0", - "cli_safe_acceleration_travel": "6000,6000", - "cli_safe_acceleration_x": "6000,6000", - "cli_safe_acceleration_y": "6000,6000", - "cli_safe_acceleration_z": "0,0", - "cli_safe_jerk_e": "0,0", - "cli_safe_jerk_x": "0,0", - "cli_safe_jerk_y": "0,0", - "cli_safe_jerk_z": "0,0", - "cli_safe_speed_e": "0,0", - "cli_safe_speed_x": "0,0", - "cli_safe_speed_y": "0,0", - "cli_safe_speed_z": "0,0" - }, - "downward_check": { - "Bambu Lab A1 0.2 nozzle": [ - "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 X1 0.2 nozzle", - "Bambu Lab A1 mini 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 X2D 0.2 nozzle" - ], - "Bambu Lab A1 0.4 nozzle": [ - "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 X1 0.4 nozzle", - "Bambu Lab A1 mini 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 X2D 0.4 nozzle" - ], - "Bambu Lab A1 0.6 nozzle": [ - "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 X1 0.6 nozzle", - "Bambu Lab A1 mini 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 X2D 0.6 nozzle" - ], - "Bambu Lab A1 0.8 nozzle": [ - "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 X1 0.8 nozzle", - "Bambu Lab A1 mini 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 X2D 0.8 nozzle" - ] - } - }, - "Bambu Lab A1 mini": { - "machine_limits": { - "cli_safe_acceleration_e": "0,0", - "cli_safe_acceleration_extruding": "0,0", - "cli_safe_acceleration_retracting": "0,0", - "cli_safe_acceleration_travel": "6000,6000", - "cli_safe_acceleration_x": "6000,6000", - "cli_safe_acceleration_y": "6000,6000", - "cli_safe_acceleration_z": "0,0", - "cli_safe_jerk_e": "0,0", - "cli_safe_jerk_x": "0,0", - "cli_safe_jerk_y": "0,0", - "cli_safe_jerk_z": "0,0", - "cli_safe_speed_e": "0,0", - "cli_safe_speed_x": "0,0", - "cli_safe_speed_y": "0,0", - "cli_safe_speed_z": "0,0" - }, - "downward_check": { - "Bambu Lab A1 mini 0.2 nozzle": [ - "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 X1 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 X2D 0.2 nozzle" - ], - "Bambu Lab A1 mini 0.4 nozzle": [ - "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 X1 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 X2D 0.4 nozzle" - ], - "Bambu Lab A1 mini 0.6 nozzle": [ - "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 X1 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 X2D 0.6 nozzle" - ], - "Bambu Lab A1 mini 0.8 nozzle": [ - "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 X1 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 X2D 0.8 nozzle" - ] - } - }, - "Bambu Lab X1": { - "downward_check": { - "Bambu Lab X1 0.2 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.2 nozzle" - ], - "Bambu Lab X1 0.4 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.4 nozzle" - ], - "Bambu Lab X1 0.6 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.6 nozzle" - ], - "Bambu Lab X1 0.8 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.8 nozzle" - ] - } - }, - "Bambu Lab X1 Carbon": { - "downward_check": { - "Bambu Lab X1 Carbon 0.2 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.2 nozzle" - ], - "Bambu Lab X1 Carbon 0.4 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.4 nozzle" - ], - "Bambu Lab X1 Carbon 0.6 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.6 nozzle" - ], - "Bambu Lab X1 Carbon 0.8 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.8 nozzle" - ] - } - }, - "Bambu Lab X1E": { - "downward_check": { - "Bambu Lab X1E 0.2 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.2 nozzle" - ], - "Bambu Lab X1E 0.4 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.4 nozzle" - ], - "Bambu Lab X1E 0.6 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.6 nozzle" - ], - "Bambu Lab X1E 0.8 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.8 nozzle" - ] - } - }, - "Bambu Lab P1P": { - "downward_check": { - "Bambu Lab P1P 0.2 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.2 nozzle" - ], - "Bambu Lab P1P 0.4 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.4 nozzle" - ], - "Bambu Lab P1P 0.6 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.6 nozzle" - ], - "Bambu Lab P1P 0.8 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.8 nozzle" - ] - } - }, - "Bambu Lab P1S": { - "downward_check": { - "Bambu Lab P1S 0.2 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.2 nozzle" - ], - "Bambu Lab P1S 0.4 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.4 nozzle" - ], - "Bambu Lab P1S 0.6 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.6 nozzle" - ], - "Bambu Lab P1S 0.8 nozzle": [ - "Bambu Lab A1 mini 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 X2D 0.8 nozzle" - ] - } - }, - "Bambu Lab H2D": { - "downward_check": { - "Bambu Lab H2D 0.2 nozzle": [ - "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 X1 0.2 nozzle", - "Bambu Lab A1 0.2 nozzle", - "Bambu Lab A1 mini 0.2 nozzle", - "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle", - "Bambu Lab X2D 0.2 nozzle" - ], - "Bambu Lab H2D 0.4 nozzle": [ - "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 X1 0.4 nozzle", - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab X2D 0.4 nozzle" - ], - "Bambu Lab H2D 0.6 nozzle": [ - "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 X1 0.6 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab X2D 0.6 nozzle" - ], - "Bambu Lab H2D 0.8 nozzle": [ - "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 X1 0.8 nozzle", - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab A1 mini 0.8 nozzle", - "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ] - } - }, - "Bambu Lab H2D Pro": { - "downward_check": { - "Bambu Lab H2D Pro 0.2 nozzle": [ - "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 X1 0.2 nozzle", - "Bambu Lab A1 0.2 nozzle", - "Bambu Lab A1 mini 0.2 nozzle", - "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle", - "Bambu Lab X2D 0.2 nozzle" - ], - "Bambu Lab H2D Pro 0.4 nozzle": [ - "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 X1 0.4 nozzle", - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab X2D 0.4 nozzle" - ], - "Bambu Lab H2D Pro 0.6 nozzle": [ - "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 X1 0.6 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab X2D 0.6 nozzle" - ], - "Bambu Lab H2D Pro 0.8 nozzle": [ - "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 X1 0.8 nozzle", - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab A1 mini 0.8 nozzle", - "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ] - } - }, - "Bambu Lab H2S": { - "downward_check": { - "Bambu Lab H2S 0.2 nozzle": [ - "Bambu Lab A1 0.2 nozzle", - "Bambu Lab A1 mini 0.2 nozzle", - "Bambu Lab H2D 0.2 nozzle", - "Bambu Lab H2D Pro 0.2 nozzle", - "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", - "Bambu Lab P2S 0.2 nozzle", - "Bambu Lab X2D 0.2 nozzle" - ], - "Bambu Lab H2S 0.4 nozzle": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D Pro 0.4 nozzle", - "Bambu Lab P1P 0.4 nozzle", - "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 P2S 0.4 nozzle", - "Bambu Lab X2D 0.4 nozzle" - ], - "Bambu Lab H2S 0.6 nozzle": [ - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "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 P2S 0.6 nozzle", - "Bambu Lab X2D 0.6 nozzle" - ], - "Bambu Lab H2S 0.8 nozzle": [ - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab A1 mini 0.8 nozzle", - "Bambu Lab H2D 0.8 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle", - "Bambu Lab P1P 0.8 nozzle", - "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 P2S 0.8 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ] - } - }, - "Bambu Lab P2S": { - "downward_check": { - "Bambu Lab P2S 0.2 nozzle": [ - "Bambu Lab A1 0.2 nozzle", - "Bambu Lab A1 mini 0.2 nozzle", - "Bambu Lab H2D 0.2 nozzle", - "Bambu Lab H2D Pro 0.2 nozzle", - "Bambu Lab H2S 0.2 nozzle", - "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", - "Bambu Lab X2D 0.2 nozzle" - ], - "Bambu Lab P2S 0.4 nozzle": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D Pro 0.4 nozzle", - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P1P 0.4 nozzle", - "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 X2D 0.4 nozzle" - ], - "Bambu Lab P2S 0.6 nozzle": [ - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "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 X2D 0.6 nozzle" - ], - "Bambu Lab P2S 0.8 nozzle": [ - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab A1 mini 0.8 nozzle", - "Bambu Lab H2D 0.8 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle", - "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P1P 0.8 nozzle", - "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 X2D 0.8 nozzle" - ] - } - }, - "Bambu Lab X2D": { - "downward_check": { - "Bambu Lab X2D 0.2 nozzle": [ - "Bambu Lab A1 0.2 nozzle", - "Bambu Lab A1 mini 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle", - "Bambu Lab P1P 0.2 nozzle", - "Bambu Lab P1S 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.4 nozzle": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1S 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.6 nozzle": [ - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1S 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.8 nozzle": [ - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab A1 mini 0.8 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1E 0.8 nozzle", - "Bambu Lab P1P 0.8 nozzle", - "Bambu Lab P1S 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 H2C": { - "downward_check": { - "Bambu Lab H2C 0.2 nozzle": [ - "Bambu Lab A1 0.2 nozzle", - "Bambu Lab A1 mini 0.2 nozzle", - "Bambu Lab H2D 0.2 nozzle", - "Bambu Lab H2D Pro 0.2 nozzle", - "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab P1P 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle", - "Bambu Lab X2D 0.2 nozzle", - "Bambu Lab A2L 0.2 nozzle" - ], - "Bambu Lab H2C 0.4 nozzle": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D Pro 0.4 nozzle", - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X2D 0.4 nozzle", - "Bambu Lab A2L 0.4 nozzle" - ], - "Bambu Lab H2C 0.6 nozzle": [ - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab A2L 0.6 nozzle" - ], - "Bambu Lab H2C 0.8 nozzle": [ - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab A1 mini 0.8 nozzle", - "Bambu Lab H2D 0.8 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle", - "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P1P 0.8 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1E 0.8 nozzle", - "Bambu Lab X2D 0.8 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ] - } - }, - "Bambu Lab A2L": { - "machine_limits": { - "cli_safe_acceleration_e": "0,0", - "cli_safe_acceleration_extruding": "0,0", - "cli_safe_acceleration_retracting": "0,0", - "cli_safe_acceleration_travel": "8000,8000", - "cli_safe_acceleration_x": "6000,6000", - "cli_safe_acceleration_y": "6000,6000", - "cli_safe_acceleration_z": "0,0", - "cli_safe_jerk_e": "0,0", - "cli_safe_jerk_x": "0,0", - "cli_safe_jerk_y": "0,0", - "cli_safe_jerk_z": "0,0", - "cli_safe_speed_e": "0,0", - "cli_safe_speed_x": "0,0", - "cli_safe_speed_y": "0,0", - "cli_safe_speed_z": "0,0" - }, - "downward_check": { - "Bambu Lab A2L 0.2 nozzle": [ - "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 X1 0.2 nozzle", - "Bambu Lab A1 0.2 nozzle", - "Bambu Lab A1 mini 0.2 nozzle", - "Bambu Lab H2D 0.2 nozzle", - "Bambu Lab H2D Pro 0.2 nozzle", - "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab H2C 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle", - "Bambu Lab X2D 0.2 nozzle" - ], - "Bambu Lab A2L 0.4 nozzle": [ - "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 X1 0.4 nozzle", - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D Pro 0.4 nozzle", - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2C 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab X2D 0.4 nozzle" - ], - "Bambu Lab A2L 0.6 nozzle": [ - "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 X1 0.6 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab X2D 0.6 nozzle" - ], - "Bambu Lab A2L 0.8 nozzle": [ - "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 X1 0.8 nozzle", - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab A1 mini 0.8 nozzle", - "Bambu Lab H2D 0.8 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle", - "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab H2C 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ] - } - } - } + "printer": { + "Bambu Lab A1": { + "machine_limits": { + "cli_safe_acceleration_e": "0,0", + "cli_safe_acceleration_extruding": "0,0", + "cli_safe_acceleration_retracting": "0,0", + "cli_safe_acceleration_travel": "6000,6000", + "cli_safe_acceleration_x": "6000,6000", + "cli_safe_acceleration_y": "6000,6000", + "cli_safe_acceleration_z": "0,0", + "cli_safe_jerk_e": "0,0", + "cli_safe_jerk_x": "0,0", + "cli_safe_jerk_y": "0,0", + "cli_safe_jerk_z": "0,0", + "cli_safe_speed_e": "0,0", + "cli_safe_speed_x": "0,0", + "cli_safe_speed_y": "0,0", + "cli_safe_speed_z": "0,0" + }, + "downward_check": { + "Bambu Lab A1 0.2 nozzle": [ + "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 X1 0.2 nozzle", + "Bambu Lab A1 mini 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 A1 0.4 nozzle": [ + "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 X1 0.4 nozzle", + "Bambu Lab A1 mini 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 A1 0.6 nozzle": [ + "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 X1 0.6 nozzle", + "Bambu Lab A1 mini 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 A1 0.8 nozzle": [ + "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 X1 0.8 nozzle", + "Bambu Lab A1 mini 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 A1 mini": { + "machine_limits": { + "cli_safe_acceleration_e": "0,0", + "cli_safe_acceleration_extruding": "0,0", + "cli_safe_acceleration_retracting": "0,0", + "cli_safe_acceleration_travel": "6000,6000", + "cli_safe_acceleration_x": "6000,6000", + "cli_safe_acceleration_y": "6000,6000", + "cli_safe_acceleration_z": "0,0", + "cli_safe_jerk_e": "0,0", + "cli_safe_jerk_x": "0,0", + "cli_safe_jerk_y": "0,0", + "cli_safe_jerk_z": "0,0", + "cli_safe_speed_e": "0,0", + "cli_safe_speed_x": "0,0", + "cli_safe_speed_y": "0,0", + "cli_safe_speed_z": "0,0" + }, + "downward_check": { + "Bambu Lab A1 mini 0.2 nozzle": [ + "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 X1 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 A1 mini 0.4 nozzle": [ + "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 X1 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 A1 mini 0.6 nozzle": [ + "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 X1 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 A1 mini 0.8 nozzle": [ + "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 X1 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 X1": { + "downward_check": { + "Bambu Lab X1 0.2 nozzle": [ + "Bambu Lab A1 mini 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" + ], + "Bambu Lab X1 0.4 nozzle": [ + "Bambu Lab A1 mini 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" + ], + "Bambu Lab X1 0.6 nozzle": [ + "Bambu Lab A1 mini 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" + ], + "Bambu Lab X1 0.8 nozzle": [ + "Bambu Lab A1 mini 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" + ] + } + }, + "Bambu Lab X1 Carbon": { + "downward_check": { + "Bambu Lab X1 Carbon 0.2 nozzle": [ + "Bambu Lab A1 mini 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" + ], + "Bambu Lab X1 Carbon 0.4 nozzle": [ + "Bambu Lab A1 mini 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" + ], + "Bambu Lab X1 Carbon 0.6 nozzle": [ + "Bambu Lab A1 mini 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" + ], + "Bambu Lab X1 Carbon 0.8 nozzle": [ + "Bambu Lab A1 mini 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" + ] + } + }, + "Bambu Lab X1E": { + "downward_check": { + "Bambu Lab X1E 0.2 nozzle": [ + "Bambu Lab A1 mini 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" + ], + "Bambu Lab X1E 0.4 nozzle": [ + "Bambu Lab A1 mini 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" + ], + "Bambu Lab X1E 0.6 nozzle": [ + "Bambu Lab A1 mini 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" + ], + "Bambu Lab X1E 0.8 nozzle": [ + "Bambu Lab A1 mini 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" + ] + } + }, + "Bambu Lab P1P": { + "downward_check": { + "Bambu Lab P1P 0.2 nozzle": [ + "Bambu Lab A1 mini 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" + ], + "Bambu Lab P1P 0.4 nozzle": [ + "Bambu Lab A1 mini 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" + ], + "Bambu Lab P1P 0.6 nozzle": [ + "Bambu Lab A1 mini 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" + ], + "Bambu Lab P1P 0.8 nozzle": [ + "Bambu Lab A1 mini 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" + ] + } + }, + "Bambu Lab P1S": { + "downward_check": { + "Bambu Lab P1S 0.2 nozzle": [ + "Bambu Lab A1 mini 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" + ], + "Bambu Lab P1S 0.4 nozzle": [ + "Bambu Lab A1 mini 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" + ], + "Bambu Lab P1S 0.6 nozzle": [ + "Bambu Lab A1 mini 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" + ], + "Bambu Lab P1S 0.8 nozzle": [ + "Bambu Lab A1 mini 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" + ] + } + }, + "Bambu Lab H2D": { + "downward_check": { + "Bambu Lab H2D 0.2 nozzle": [ + "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 X1 0.2 nozzle", + "Bambu Lab A1 0.2 nozzle", + "Bambu Lab A1 mini 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" + ], + "Bambu Lab H2D 0.4 nozzle": [ + "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 X1 0.4 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 mini 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" + ], + "Bambu Lab H2D 0.6 nozzle": [ + "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 X1 0.6 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 mini 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" + ], + "Bambu Lab H2D 0.8 nozzle": [ + "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 X1 0.8 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab A1 mini 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" + ] + } + }, + "Bambu Lab H2D Pro": { + "downward_check": { + "Bambu Lab H2D Pro 0.2 nozzle": [ + "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 X1 0.2 nozzle", + "Bambu Lab A1 0.2 nozzle", + "Bambu Lab A1 mini 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" + ], + "Bambu Lab H2D Pro 0.4 nozzle": [ + "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 X1 0.4 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 mini 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" + ], + "Bambu Lab H2D Pro 0.6 nozzle": [ + "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 X1 0.6 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 mini 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" + ], + "Bambu Lab H2D Pro 0.8 nozzle": [ + "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 X1 0.8 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab A1 mini 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" + ] + } + }, + "Bambu Lab H2S": { + "downward_check": { + "Bambu Lab H2S 0.2 nozzle": [ + "Bambu Lab A1 0.2 nozzle", + "Bambu Lab A1 mini 0.2 nozzle", + "Bambu Lab H2D 0.2 nozzle", + "Bambu Lab H2D Pro 0.2 nozzle", + "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", + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab H2C 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab A2L 0.2 nozzle" + ], + "Bambu Lab H2S 0.4 nozzle": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "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 P2S 0.4 nozzle", + "Bambu Lab H2C 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab A2L 0.4 nozzle" + ], + "Bambu Lab H2S 0.6 nozzle": [ + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "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 P2S 0.6 nozzle", + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab A2L 0.6 nozzle" + ], + "Bambu Lab H2S 0.8 nozzle": [ + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "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 P2S 0.8 nozzle", + "Bambu Lab H2C 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ] + } + }, + "Bambu Lab P2S": { + "downward_check": { + "Bambu Lab P2S 0.2 nozzle": [ + "Bambu Lab A1 0.2 nozzle", + "Bambu Lab A1 mini 0.2 nozzle", + "Bambu Lab H2D 0.2 nozzle", + "Bambu Lab H2D Pro 0.2 nozzle", + "Bambu Lab H2S 0.2 nozzle", + "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", + "Bambu Lab H2C 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab A2L 0.2 nozzle" + ], + "Bambu Lab P2S 0.4 nozzle": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "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 H2C 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab A2L 0.4 nozzle" + ], + "Bambu Lab P2S 0.6 nozzle": [ + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "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 H2C 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab A2L 0.6 nozzle" + ], + "Bambu Lab P2S 0.8 nozzle": [ + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "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 H2C 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ] + } + }, + "Bambu Lab H2C": { + "downward_check": { + "Bambu Lab H2C 0.2 nozzle": [ + "Bambu Lab A1 0.2 nozzle", + "Bambu Lab A1 mini 0.2 nozzle", + "Bambu Lab H2D 0.2 nozzle", + "Bambu Lab H2D Pro 0.2 nozzle", + "Bambu Lab H2S 0.2 nozzle", + "Bambu Lab P1P 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab A2L 0.2 nozzle" + ], + "Bambu Lab H2C 0.4 nozzle": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab A2L 0.4 nozzle" + ], + "Bambu Lab H2C 0.6 nozzle": [ + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab A2L 0.6 nozzle" + ], + "Bambu Lab H2C 0.8 nozzle": [ + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ] + } + }, + "Bambu Lab X2D": { + "downward_check": { + "Bambu Lab X2D 0.2 nozzle": [ + "Bambu Lab A1 0.2 nozzle", + "Bambu Lab A1 mini 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle", + "Bambu Lab P1P 0.2 nozzle", + "Bambu Lab P1S 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 A2L 0.2 nozzle" + ], + "Bambu Lab X2D 0.4 nozzle": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1S 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 A2L 0.4 nozzle" + ], + "Bambu Lab X2D 0.6 nozzle": [ + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1S 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 A2L 0.6 nozzle" + ], + "Bambu Lab X2D 0.8 nozzle": [ + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 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 A2L 0.8 nozzle" + ] + } + }, + "Bambu Lab A2L": { + "machine_limits": { + "cli_safe_acceleration_e": "0,0", + "cli_safe_acceleration_extruding": "0,0", + "cli_safe_acceleration_retracting": "0,0", + "cli_safe_acceleration_travel": "8000,8000", + "cli_safe_acceleration_x": "6000,6000", + "cli_safe_acceleration_y": "6000,6000", + "cli_safe_acceleration_z": "0,0", + "cli_safe_jerk_e": "0,0", + "cli_safe_jerk_x": "0,0", + "cli_safe_jerk_y": "0,0", + "cli_safe_jerk_z": "0,0", + "cli_safe_speed_e": "0,0", + "cli_safe_speed_x": "0,0", + "cli_safe_speed_y": "0,0", + "cli_safe_speed_z": "0,0" + }, + "downward_check": { + "Bambu Lab A2L 0.2 nozzle": [ + "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 X1 0.2 nozzle", + "Bambu Lab A1 0.2 nozzle", + "Bambu Lab A1 mini 0.2 nozzle", + "Bambu Lab H2D 0.2 nozzle", + "Bambu Lab H2D Pro 0.2 nozzle", + "Bambu Lab H2S 0.2 nozzle", + "Bambu Lab H2C 0.2 nozzle", + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle" + ], + "Bambu Lab A2L 0.4 nozzle": [ + "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 X1 0.4 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2C 0.4 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle" + ], + "Bambu Lab A2L 0.6 nozzle": [ + "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 X1 0.6 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle" + ], + "Bambu Lab A2L 0.8 nozzle": [ + "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 X1 0.8 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab H2C 0.8 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ] + } + } + } } 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/Bambu ABS @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL A1 0.2 nozzle.json index 436551f825..3282b698e7 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL A1 0.2 nozzle.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu ABS @BBL A1 0.2 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_08", - "instantiation": "true", - "fan_max_speed": [ - "20" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "slow_down_layer_time": [ - "12" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu ABS @BBL A1 0.2 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_08", + "instantiation": "true", + "fan_max_speed": [ + "20" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ABS @BBL A1.json b/resources/profiles/BBL/filament/Bambu ABS @BBL A1.json index 50a6b5b49b..434551b4ab 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL A1.json @@ -1,43 +1,46 @@ { - "type": "filament", - "name": "Bambu ABS @BBL A1", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_07", - "instantiation": "true", - "fan_max_speed": [ - "20" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "slow_down_layer_time": [ - "12" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu ABS @BBL A1", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_07", + "instantiation": "true", + "fan_max_speed": [ + "20" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "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 ABS @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL H2C 0.2 nozzle.json index 476af5f5f2..fd561c9b02 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL H2C 0.2 nozzle.json @@ -1,210 +1,113 @@ { - "type": "filament", - "name": "Bambu ABS @BBL H2C 0.2 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_23", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.0124" - ], - "counter_coef_3": [ - "0.0241" - ], - "counter_limit_max": [ - "0.3341" - ], - "counter_limit_min": [ - "0.0241" - ], - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "40" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_pre_cooling_temperature_nc": [ - "230", - "230" - ], - "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.0008" - ], - "hole_coef_3": [ - "0.1319" - ], - "hole_limit_max": [ - "0.1319" - ], - "hole_limit_min": [ - "0.1119" - ], - "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_layer_time": [ - "12" - ], - "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": "Bambu ABS @BBL H2C 0.2 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_23", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "counter_limit_min": [ + "0.0241" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "40" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_pre_cooling_temperature_nc": [ + "230", + "230" + ], + "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.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_max": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "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_layer_time": [ + "12" + ], + "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/Bambu ABS @BBL H2C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL H2C 0.6 nozzle.json index d045691a69..43827c7a5e 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL H2C 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL H2C 0.6 nozzle.json @@ -1,204 +1,141 @@ { - "type": "filament", - "name": "Bambu ABS @BBL H2C 0.6 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_34", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.0124" - ], - "counter_coef_3": [ - "0.0241" - ], - "counter_limit_max": [ - "0.3341" - ], - "counter_limit_min": [ - "0.0241" - ], - "fan_max_speed": [ - "60" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "25", - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "230", - "230" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "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.0008" - ], - "hole_coef_3": [ - "0.1319" - ], - "hole_limit_max": [ - "0.1319" - ], - "hole_limit_min": [ - "0.1119" - ], - "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_layer_time": [ - "12" - ], - "slow_down_min_speed": [ - "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" - ] + "type": "filament", + "name": "Bambu ABS @BBL H2C 0.6 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_34", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_min": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "fan_max_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "25", + "30", + "25" + ], + "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" + ], + "filament_change_length_nc": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "hole_limit_max": [ + "0.1319" + ], + "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_layer_time": [ + "12" + ], + "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 ABS @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL H2C 0.8 nozzle.json index e06502611f..7fd3b25a7e 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL H2C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL H2C 0.8 nozzle.json @@ -1,204 +1,127 @@ { - "type": "filament", - "name": "Bambu ABS @BBL H2C 0.8 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_35", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.0124" - ], - "counter_coef_3": [ - "0.0241" - ], - "counter_limit_max": [ - "0.3341" - ], - "counter_limit_min": [ - "0.0241" - ], - "fan_max_speed": [ - "60" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "25", - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "230", - "230" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "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.0008" - ], - "hole_coef_3": [ - "0.1319" - ], - "hole_limit_max": [ - "0.1319" - ], - "hole_limit_min": [ - "0.1119" - ], - "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_layer_time": [ - "12" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "75" - ], - "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 ABS @BBL H2C 0.8 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_35", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "counter_limit_min": [ + "0.0241" + ], + "fan_max_speed": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "25", + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "230", + "230" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "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.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_max": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "temperature_vitrification": [ + "75" + ], + "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 ABS @BBL H2C.json b/resources/profiles/BBL/filament/Bambu ABS @BBL H2C.json index dde059f080..410db132d7 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL H2C.json @@ -1,204 +1,141 @@ { - "type": "filament", - "name": "Bambu ABS @BBL H2C", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_22", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.0124" - ], - "counter_coef_3": [ - "0.0241" - ], - "counter_limit_max": [ - "0.3341" - ], - "counter_limit_min": [ - "0.0241" - ], - "fan_max_speed": [ - "60" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "20", - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "230", - "230" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "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.0008" - ], - "hole_coef_3": [ - "0.1319" - ], - "hole_limit_max": [ - "0.1319" - ], - "hole_limit_min": [ - "0.1119" - ], - "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_layer_time": [ - "12" - ], - "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 ABS @BBL H2C", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_22", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_min": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "fan_max_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "20", + "30", + "20" + ], + "filament_retraction_length": [ + "0.4", + "0.6", + "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" + ], + "filament_change_length_nc": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "hole_limit_max": [ + "0.1319" + ], + "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_layer_time": [ + "12" + ], + "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 ABS @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL H2D 0.2 nozzle.json index d88b92f803..e357dc5e05 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL H2D 0.2 nozzle.json @@ -1,134 +1,83 @@ { - "type": "filament", - "name": "Bambu ABS @BBL H2D 0.2 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_12", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "fan_max_speed": [ - "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" - ], - "slow_down_layer_time": [ - "12" - ], - "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 ABS @BBL H2D 0.2 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_12", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "counter_limit_min": [ + "0.0241" + ], + "fan_max_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_max": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_layer_time": [ + "12" + ], + "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 ABS @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL H2D 0.6 nozzle.json index 9775ec7727..328543f9c0 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL H2D 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL H2D 0.6 nozzle.json @@ -1,138 +1,109 @@ { - "type": "filament", - "name": "Bambu ABS @BBL H2D 0.6 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_29", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "fan_max_speed": [ - "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": [ - "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" - ], - "filament_extruder_id": [ - "1", - "1" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 ABS @BBL H2D 0.6 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_29", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "counter_limit_min": [ + "0.0241" + ], + "fan_max_speed": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "25", + "35", + "25" + ], + "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.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_max": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "slow_down_layer_time": [ + "12" + ], + "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 ABS @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL H2D 0.8 nozzle.json index c2e36ce885..5d75f70a48 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL H2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL H2D 0.8 nozzle.json @@ -1,134 +1,99 @@ { - "type": "filament", - "name": "Bambu ABS @BBL H2D 0.8 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_13", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "fan_max_speed": [ - "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": [ - "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" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 ABS @BBL H2D 0.8 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_13", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "counter_limit_min": [ + "0.0241" + ], + "fan_max_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "25", + "35" + ], + "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.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_max": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "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 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 ABS @BBL H2D.json b/resources/profiles/BBL/filament/Bambu ABS @BBL H2D.json index 5f76cd7b7b..dcbe4c9c9b 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL H2D.json @@ -1,134 +1,109 @@ { - "type": "filament", - "name": "Bambu ABS @BBL H2D", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_11", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "fan_max_speed": [ - "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": [ - "20", - "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" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 ABS @BBL H2D", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_11", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "counter_limit_min": [ + "0.0241" + ], + "fan_max_speed": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "20", + "35", + "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" + ], + "hole_coef_2": [ + "-0.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_max": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "slow_down_layer_time": [ + "12" + ], + "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 ABS @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL H2DP 0.2 nozzle.json index 49577af9aa..afb7d2af99 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL H2DP 0.2 nozzle.json @@ -1,134 +1,53 @@ { - "type": "filament", - "name": "Bambu ABS @BBL H2DP 0.2 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_17", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "fan_max_speed": [ - "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" - ], - "slow_down_layer_time": [ - "12" - ], - "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 ABS @BBL H2DP 0.2 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_17", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "fan_max_speed": [ + "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_layer_time": [ + "12" + ], + "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 ABS @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL H2DP 0.6 nozzle.json index eb037b997a..5ed4484f7f 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL H2DP 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL H2DP 0.6 nozzle.json @@ -1,134 +1,69 @@ { - "type": "filament", - "name": "Bambu ABS @BBL H2DP 0.6 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_31", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "fan_max_speed": [ - "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": [ - "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" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 ABS @BBL H2DP 0.6 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_31", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "fan_max_speed": [ + "60" + ], + "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_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_layer_time": [ + "12" + ], + "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 ABS @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL H2DP 0.8 nozzle.json index 2d62fb219b..5f5a3435d7 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL H2DP 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL H2DP 0.8 nozzle.json @@ -1,134 +1,69 @@ { - "type": "filament", - "name": "Bambu ABS @BBL H2DP 0.8 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_18", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "fan_max_speed": [ - "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": [ - "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" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 ABS @BBL H2DP 0.8 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_18", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "fan_max_speed": [ + "60" + ], + "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_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "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 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 ABS @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu ABS @BBL H2DP.json index c8b70f19cc..ed170c8a30 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL H2DP.json @@ -1,134 +1,69 @@ { - "type": "filament", - "name": "Bambu ABS @BBL H2DP", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_16", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "fan_max_speed": [ - "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": [ - "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": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 ABS @BBL H2DP", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_16", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "fan_max_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "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": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_layer_time": [ + "12" + ], + "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 ABS @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL H2S 0.2 nozzle.json index e7756331db..6f18702239 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL H2S 0.2 nozzle.json @@ -1,143 +1,104 @@ { - "type": "filament", - "name": "Bambu ABS @BBL H2S 0.2 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_25", - "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" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "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": "Bambu ABS @BBL H2S 0.2 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_25", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_min": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "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_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "hole_limit_max": [ + "0.1319" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "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/Bambu ABS @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL H2S 0.6 nozzle.json index c7611051e5..d995f5cf2f 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL H2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL H2S 0.6 nozzle.json @@ -1,140 +1,125 @@ { - "type": "filament", - "name": "Bambu ABS @BBL H2S 0.6 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_33", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "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": [ - "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" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "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.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu ABS @BBL H2S 0.6 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_33", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_min": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "fan_max_speed": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "25", + "35", + "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.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "hole_limit_max": [ + "0.1319" + ], + "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" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "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.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu ABS @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL H2S 0.8 nozzle.json index 0c5ee84975..af38270fbb 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL H2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL H2S 0.8 nozzle.json @@ -1,140 +1,113 @@ { - "type": "filament", - "name": "Bambu ABS @BBL H2S 0.8 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_32", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "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": [ - "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" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu ABS @BBL H2S 0.8 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_32", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_min": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "fan_max_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "25", + "35" + ], + "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.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "hole_limit_max": [ + "0.1319" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "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 ABS @BBL H2S.json b/resources/profiles/BBL/filament/Bambu ABS @BBL H2S.json index 821c81cb29..35a8d05943 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL H2S.json @@ -1,140 +1,125 @@ { - "type": "filament", - "name": "Bambu ABS @BBL H2S", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_24", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "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": [ - "20", - "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" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "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" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu ABS @BBL H2S", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_24", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_min": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "fan_max_speed": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "20", + "35", + "20" + ], + "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.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "hole_limit_max": [ + "0.1319" + ], + "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" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "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" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu ABS @BBL P1S 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL P1S 0.4 nozzle.json new file mode 100644 index 0000000000..d2b3ac673b --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL P1S 0.4 nozzle.json @@ -0,0 +1,72 @@ +{ + "type": "filament", + "name": "Bambu ABS @BBL P1S 0.4 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_38", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "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" + ], + "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_layer_time": [ + "12" + ], + "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 ABS @BBL P1S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL P1S 0.6 nozzle.json new file mode 100644 index 0000000000..df087aa06b --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL P1S 0.6 nozzle.json @@ -0,0 +1,72 @@ +{ + "type": "filament", + "name": "Bambu ABS @BBL P1S 0.6 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_39", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "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" + ], + "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_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ABS @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL P2S 0.2 nozzle.json index 4ea2a820a8..0c48231b9e 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL P2S 0.2 nozzle.json @@ -1,174 +1,93 @@ { - "type": "filament", - "name": "Bambu ABS @BBL P2S 0.2 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_14", - "instantiation": "true", - "activate_air_filtration": [ - "0" - ], - "chamber_temperatures": [ - "65" - ], - "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_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" - ], - "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 ABS @BBL P2S 0.2 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_14", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "counter_limit_min": [ + "0.0241" + ], + "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" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "hole_coef_2": [ + "-0.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_max": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "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_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 ABS @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL P2S 0.6 nozzle.json index 7a68865cc7..6627fb2e62 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL P2S 0.6 nozzle.json @@ -1,174 +1,105 @@ { - "type": "filament", - "name": "Bambu ABS @BBL P2S 0.6 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_36", - "instantiation": "true", - "activate_air_filtration": [ - "0" - ], - "chamber_temperatures": [ - "65" - ], - "fan_max_speed": [ - "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": [ - "16", - "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": [ - "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" - ], - "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" - ], - "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.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu ABS @BBL P2S 0.6 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_36", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_min": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "fan_max_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "16", + "35", + "16" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "hole_limit_max": [ + "0.1319" + ], + "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_layer_time": [ + "12" + ], + "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 ABS @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL P2S 0.8 nozzle.json index 1d362722c4..bb2c6c215c 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL P2S 0.8 nozzle.json @@ -1,177 +1,93 @@ { - "type": "filament", - "name": "Bambu ABS @BBL P2S 0.8 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_15", - "instantiation": "true", - "activate_air_filtration": [ - "0" - ], - "chamber_temperatures": [ - "65" - ], - "fan_max_speed": [ - "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": [ - "18", - "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": [ - "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" - ], - "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" - ], - "slow_down_layer_time": [ - "12" - ], - "slow_down_min_speed": [ - "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 ABS @BBL P2S 0.8 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_15", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "counter_limit_min": [ + "0.0241" + ], + "fan_max_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "18", + "35" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "-0.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_max": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "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" + ], + "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 ABS @BBL P2S.json b/resources/profiles/BBL/filament/Bambu ABS @BBL P2S.json index df806f0816..2b3151df5f 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL P2S.json @@ -1,174 +1,108 @@ { - "type": "filament", - "name": "Bambu ABS @BBL P2S", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_10", - "instantiation": "true", - "activate_air_filtration": [ - "0" - ], - "chamber_temperatures": [ - "65" - ], - "fan_max_speed": [ - "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": [ - "16", - "25" - ], - "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": [ - "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" - ], - "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" - ], - "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.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu ABS @BBL P2S", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_10", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_min": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "fan_max_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "16", + "25", + "16" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "hole_limit_max": [ + "0.1319" + ], + "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_layer_time": [ + "12" + ], + "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 ABS @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL X1C 0.2 nozzle.json index f932ecd24e..ef901b0dc1 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL X1C 0.2 nozzle.json @@ -1,127 +1,58 @@ { - "type": "filament", - "name": "Bambu ABS @BBL X1C 0.2 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_00", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "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" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "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 X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu ABS @BBL X1C 0.2 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_00", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "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": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "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" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ABS @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL X1C 0.6 nozzle.json new file mode 100644 index 0000000000..b7d3a06ea2 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL X1C 0.6 nozzle.json @@ -0,0 +1,64 @@ +{ + "type": "filament", + "name": "Bambu ABS @BBL X1C 0.6 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_40", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "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.8" + ], + "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": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "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 ABS @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL X1C 0.8 nozzle.json index a48f1f1dad..c25c690d8b 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL X1C 0.8 nozzle.json @@ -1,130 +1,58 @@ { - "type": "filament", - "name": "Bambu ABS @BBL X1C 0.8 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_01", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "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": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "12" - ], - "slow_down_min_speed": [ - "10" - ], - "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 X1 0.8 nozzle", - "Bambu Lab P1S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu ABS @BBL X1C 0.8 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_01", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "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" + ], + "filament_retraction_length": [ + "0.4", + "nil" + ], + "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" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ABS @BBL X1C.json b/resources/profiles/BBL/filament/Bambu ABS @BBL X1C.json index 3a34dff1b3..4632ca054f 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL X1C.json @@ -1,130 +1,74 @@ { - "type": "filament", - "name": "Bambu ABS @BBL X1C", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "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" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "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 X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle" - ] -} + "type": "filament", + "name": "Bambu ABS @BBL X1C", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "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" + ], + "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_layer_time": [ + "12" + ], + "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.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ABS @BBL X1E 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL X1E 0.2 nozzle.json index 21fd5d6c6f..63b7b1ea67 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL X1E 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL X1E 0.2 nozzle.json @@ -1,125 +1,56 @@ { - "type": "filament", - "name": "Bambu ABS @BBL X1E 0.2 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_05", - "instantiation": "true", - "fan_max_speed": [ - "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": [ - "1", - "1" - ], - "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": [ - "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": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "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 X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu ABS @BBL X1E 0.2 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_05", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "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": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "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/Bambu ABS @BBL X1E 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL X1E 0.8 nozzle.json index bd5a55a77c..5022a70244 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL X1E 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL X1E 0.8 nozzle.json @@ -1,128 +1,56 @@ { - "type": "filament", - "name": "Bambu ABS @BBL X1E 0.8 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_06", - "instantiation": "true", - "fan_max_speed": [ - "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": [ - "1", - "1" - ], - "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": [ - "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": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "12" - ], - "slow_down_min_speed": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu ABS @BBL X1E 0.8 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_06", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "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" + ], + "filament_retraction_length": [ + "0.4", + "nil" + ], + "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" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ABS @BBL X1E.json b/resources/profiles/BBL/filament/Bambu ABS @BBL X1E.json index c70dc81a06..996212ace3 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL X1E.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL X1E.json @@ -1,126 +1,61 @@ { - "type": "filament", - "name": "Bambu ABS @BBL X1E", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_04", - "instantiation": "true", - "fan_max_speed": [ - "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": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_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" - ], - "slow_down_layer_time": [ - "12" - ], - "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" - ] -} + "type": "filament", + "name": "Bambu ABS @BBL X1E", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_04", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "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", + "nil" + ], + "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_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "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/Bambu ABS @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL X2D 0.2 nozzle.json index d8cc33038d..31edcc6add 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL X2D 0.2 nozzle.json @@ -1,299 +1,134 @@ { - "type": "filament", - "name": "Bambu ABS @BBL X2D 0.2 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_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": [ - "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": [ - "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" - ], - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.0124" - ], - "counter_coef_3": [ - "0.0241" - ], - "counter_limit_max": [ - "0.3341" - ], - "counter_limit_min": [ - "0.0241" - ], - "fan_min_speed": [ - "80" - ], - "filament_extruder_compatibility": [ - "24" - ], - "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" - ], - "hole_coef_2": [ - "-0.0008" - ], - "hole_coef_3": [ - "0.1319" - ], - "hole_limit_max": [ - "0.1319" - ], - "hole_limit_min": [ - "0.1119" - ], - "nozzle_temperature": [ - "270", - "270", - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260", - "260", - "260" - ], - "slow_down_layer_time": [ - "12" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu ABS @BBL X2D 0.2 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_20", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "counter_limit_min": [ + "0.0241" + ], + "fan_min_speed": [ + "80" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "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", + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "hole_coef_2": [ + "-0.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_max": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "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_layer_time": [ + "12" + ], + "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 ABS @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL X2D 0.4 nozzle.json index 127196b764..e647fa477c 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL X2D 0.4 nozzle.json @@ -1,299 +1,163 @@ { - "type": "filament", - "name": "Bambu ABS @BBL X2D 0.4 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_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" - ], - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.0124" - ], - "counter_coef_3": [ - "0.0241" - ], - "counter_limit_max": [ - "0.3341" - ], - "counter_limit_min": [ - "0.0241" - ], - "fan_max_speed": [ - "60" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "16", - "25", - "16", - "18" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "270" - ], - "hole_coef_2": [ - "-0.0008" - ], - "hole_coef_3": [ - "0.1319" - ], - "hole_limit_max": [ - "0.1319" - ], - "hole_limit_min": [ - "0.1119" - ], - "nozzle_temperature": [ - "270", - "270", - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260", - "260", - "260" - ], - "slow_down_layer_time": [ - "12" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu ABS @BBL X2D 0.4 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_09", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "counter_limit_min": [ + "0.0241" + ], + "fan_max_speed": [ + "60" + ], + "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", + "25", + "16", + "16", + "18", + "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", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "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" + ], + "hole_coef_2": [ + "-0.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_max": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "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_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu ABS @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS @BBL X2D 0.8 nozzle.json index d62909130b..ab10c78829 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL X2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL X2D 0.8 nozzle.json @@ -1,299 +1,134 @@ { - "type": "filament", - "name": "Bambu ABS @BBL X2D 0.8 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_30", - "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" - ], - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.0124" - ], - "counter_coef_3": [ - "0.0241" - ], - "counter_limit_max": [ - "0.3341" - ], - "counter_limit_min": [ - "0.0241" - ], - "fan_max_speed": [ - "60" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "16", - "35", - "16", - "16" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "270" - ], - "hole_coef_2": [ - "-0.0008" - ], - "hole_coef_3": [ - "0.1319" - ], - "hole_limit_max": [ - "0.1319" - ], - "hole_limit_min": [ - "0.1119" - ], - "nozzle_temperature": [ - "270", - "270", - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260", - "260", - "260" - ], - "slow_down_layer_time": [ - "12" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu ABS @BBL X2D 0.8 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_30", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "counter_limit_min": [ + "0.0241" + ], + "fan_max_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "16", + "35", + "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": [ + "270" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "hole_coef_2": [ + "-0.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_max": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "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_layer_time": [ + "12" + ], + "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 ABS @BBL X2D.json b/resources/profiles/BBL/filament/Bambu ABS @BBL X2D.json index 5c8d0db73f..6a0850497b 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL X2D.json @@ -1,299 +1,160 @@ { - "type": "filament", - "name": "Bambu ABS @BBL X2D", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_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", - "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" - ], - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.0124" - ], - "counter_coef_3": [ - "0.0241" - ], - "counter_limit_max": [ - "0.3341" - ], - "counter_limit_min": [ - "0.0241" - ], - "fan_max_speed": [ - "60" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "16", - "35", - "16", - "16" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "270" - ], - "hole_coef_2": [ - "-0.0008" - ], - "hole_coef_3": [ - "0.1319" - ], - "hole_limit_max": [ - "0.1319" - ], - "hole_limit_min": [ - "0.1119" - ], - "nozzle_temperature": [ - "270", - "270", - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260", - "260", - "260" - ], - "slow_down_layer_time": [ - "12" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu ABS @BBL X2D", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_19", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0124" + ], + "counter_coef_3": [ + "0.0241" + ], + "counter_limit_max": [ + "0.3341" + ], + "counter_limit_min": [ + "0.0241" + ], + "fan_max_speed": [ + "60" + ], + "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", + "35", + "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": [ + "270" + ], + "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" + ], + "hole_coef_2": [ + "-0.0008" + ], + "hole_coef_3": [ + "0.1319" + ], + "hole_limit_max": [ + "0.1319" + ], + "hole_limit_min": [ + "0.1119" + ], + "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_layer_time": [ + "12" + ], + "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 ABS @base.json b/resources/profiles/BBL/filament/Bambu ABS @base.json index 5f395440eb..9762539779 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @base.json +++ b/resources/profiles/BBL/filament/Bambu ABS @base.json @@ -1,21 +1,21 @@ { - "type": "filament", - "name": "Bambu ABS @base", - "inherits": "fdm_filament_abs", - "from": "system", - "filament_id": "OFhuaUQB", - "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": [ - "Bambu Lab" - ], - "impact_strength_z": [ - "7.4" - ] -} + "type": "filament", + "name": "Bambu ABS @base", + "inherits": "fdm_filament_abs", + "from": "system", + "filament_id": "OFhuaUQB", + "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": [ + "15.99" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "7.4" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ABS-GF @BBL A1.json b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL A1.json index ce54312a12..aee4e52a01 100644 --- a/resources/profiles/BBL/filament/Bambu ABS-GF @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL A1.json @@ -1,19 +1,19 @@ { - "type": "filament", - "name": "Bambu ABS-GF @BBL A1", - "inherits": "Bambu ABS-GF @base", - "from": "system", - "setting_id": "GFSB50_02", - "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 ABS-GF @BBL A1", + "inherits": "Bambu ABS-GF @base", + "from": "system", + "setting_id": "GFSB50_02", + "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 ABS-GF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL H2C 0.4 nozzle.json index 101af4fbd3..2a22b2c56c 100644 --- a/resources/profiles/BBL/filament/Bambu ABS-GF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL H2C 0.4 nozzle.json @@ -1,174 +1,86 @@ { - "type": "filament", - "name": "Bambu ABS-GF @BBL H2C 0.4 nozzle", - "inherits": "Bambu ABS-GF @base", - "from": "system", - "setting_id": "GFSB50_08", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "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": [ - "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 ABS-GF @BBL H2C 0.4 nozzle", + "inherits": "Bambu ABS-GF @base", + "from": "system", + "setting_id": "GFSB50_08", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "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": [ + "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" + ], + "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 ABS-GF @BBL H2C.json b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL H2C.json index b4aa3eabe8..debf0cdb10 100644 --- a/resources/profiles/BBL/filament/Bambu ABS-GF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL H2C.json @@ -1,175 +1,87 @@ { - "type": "filament", - "name": "Bambu ABS-GF @BBL H2C", - "inherits": "Bambu ABS-GF @base", - "from": "system", - "setting_id": "GFSB50_09", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "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": [ - "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 ABS-GF @BBL H2C", + "inherits": "Bambu ABS-GF @base", + "from": "system", + "setting_id": "GFSB50_09", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "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": [ + "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" + ], + "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 ABS-GF @BBL H2D.json b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL H2D.json index aede062e59..1e29218693 100644 --- a/resources/profiles/BBL/filament/Bambu ABS-GF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL H2D.json @@ -1,130 +1,61 @@ { - "type": "filament", - "name": "Bambu ABS-GF @BBL H2D", - "inherits": "Bambu ABS-GF @base", - "from": "system", - "setting_id": "GFSB50_03", - "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": [ - "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 ABS-GF @BBL H2D", + "inherits": "Bambu ABS-GF @base", + "from": "system", + "setting_id": "GFSB50_03", + "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" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "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/Bambu ABS-GF @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL H2DP.json index 4687bbc34e..fbb310bb0c 100644 --- a/resources/profiles/BBL/filament/Bambu ABS-GF @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL H2DP.json @@ -1,130 +1,49 @@ { - "type": "filament", - "name": "Bambu ABS-GF @BBL H2DP", - "inherits": "Bambu ABS-GF @base", - "from": "system", - "setting_id": "GFSB50_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": [ - "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": [ - "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 ABS-GF @BBL H2DP", + "inherits": "Bambu ABS-GF @base", + "from": "system", + "setting_id": "GFSB50_05", + "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": [ + "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/Bambu ABS-GF @BBL H2S.json b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL H2S.json index b55d5009ad..e97591813c 100644 --- a/resources/profiles/BBL/filament/Bambu ABS-GF @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL H2S.json @@ -1,130 +1,71 @@ { - "type": "filament", - "name": "Bambu ABS-GF @BBL H2S", - "inherits": "Bambu ABS-GF @base", - "from": "system", - "setting_id": "GFSB50_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": [ - "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": [ - "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 ABS-GF @BBL H2S", + "inherits": "Bambu ABS-GF @base", + "from": "system", + "setting_id": "GFSB50_10", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_prime_volume": [ + "30" + ], + "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": [ + "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" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ABS-GF @BBL P1P.json b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL P1P.json index 92a613d31e..391dde6b68 100644 --- a/resources/profiles/BBL/filament/Bambu ABS-GF @BBL P1P.json +++ b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL P1P.json @@ -1,121 +1,52 @@ { - "type": "filament", - "name": "Bambu ABS-GF @BBL P1P", - "inherits": "Bambu ABS-GF @base", - "from": "system", - "setting_id": "GFSB50_01", - "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": [ - "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": [ - "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.8 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu ABS-GF @BBL P1P", + "inherits": "Bambu ABS-GF @base", + "from": "system", + "setting_id": "GFSB50_01", + "instantiation": "true", + "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": [ + "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.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/Bambu ABS-GF @BBL P2S.json b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL P2S.json index 83c7e86a21..0e8b03a063 100644 --- a/resources/profiles/BBL/filament/Bambu ABS-GF @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL P2S.json @@ -1,170 +1,70 @@ { - "type": "filament", - "name": "Bambu ABS-GF @BBL P2S", - "inherits": "Bambu ABS-GF @base", - "from": "system", - "setting_id": "GFSB50_04", - "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": [ - "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" - ], - "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 ABS-GF @BBL P2S", + "inherits": "Bambu ABS-GF @base", + "from": "system", + "setting_id": "GFSB50_04", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "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", + "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 ABS-GF @BBL X1C.json b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL X1C.json index 84fa26686c..9da7b387f0 100644 --- a/resources/profiles/BBL/filament/Bambu ABS-GF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL X1C.json @@ -1,130 +1,61 @@ { - "type": "filament", - "name": "Bambu ABS-GF @BBL X1C", - "inherits": "Bambu ABS-GF @base", - "from": "system", - "setting_id": "GFSB50_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": [ - "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": [ - "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 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 ABS-GF @BBL X1C", + "inherits": "Bambu ABS-GF @base", + "from": "system", + "setting_id": "GFSB50_00", + "instantiation": "true", + "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": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "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 ABS-GF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL X2D 0.4 nozzle.json index 83718ceffb..4eb2b0ed73 100644 --- a/resources/profiles/BBL/filament/Bambu ABS-GF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL X2D 0.4 nozzle.json @@ -1,266 +1,103 @@ { - "type": "filament", - "name": "Bambu ABS-GF @BBL X2D 0.4 nozzle", - "inherits": "Bambu ABS-GF @base", - "from": "system", - "setting_id": "GFSB50_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": [ - "1", - "1", - "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": [ - "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 ABS-GF @BBL X2D 0.4 nozzle", + "inherits": "Bambu ABS-GF @base", + "from": "system", + "setting_id": "GFSB50_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": [ + "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": [ + "1", + "1", + "1", + "nil", + "nil", + "nil" + ], + "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/Bambu ABS-GF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL X2D.json index dc684ed111..0feee7871a 100644 --- a/resources/profiles/BBL/filament/Bambu ABS-GF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu ABS-GF @BBL X2D.json @@ -1,267 +1,104 @@ { - "type": "filament", - "name": "Bambu ABS-GF @BBL X2D", - "inherits": "Bambu ABS-GF @base", - "from": "system", - "setting_id": "GFSB50_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": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "1", - "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": [ - "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 ABS-GF @BBL X2D", + "inherits": "Bambu ABS-GF @base", + "from": "system", + "setting_id": "GFSB50_07", + "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_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "1", + "nil", + "1", + "nil", + "nil", + "nil" + ], + "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/Bambu ABS-GF @base.json b/resources/profiles/BBL/filament/Bambu ABS-GF @base.json index a14581034d..92aaa864c3 100644 --- a/resources/profiles/BBL/filament/Bambu ABS-GF @base.json +++ b/resources/profiles/BBL/filament/Bambu ABS-GF @base.json @@ -1,45 +1,45 @@ { - "type": "filament", - "name": "Bambu ABS-GF @base", - "inherits": "fdm_filament_abs", - "from": "system", - "filament_id": "OFknl9Iz", - "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": [ - "12" - ], - "fan_max_speed": [ - "30" - ], - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.08" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "12" - ], - "filament_type": [ - "ABS-GF" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "impact_strength_z": [ - "5.3" - ], - "overhang_fan_speed": [ - "30" - ], - "overhang_fan_threshold": [ - "10%" - ], - "slow_down_layer_time": [ - "4" - ] -} + "type": "filament", + "name": "Bambu ABS-GF @base", + "inherits": "fdm_filament_abs", + "from": "system", + "filament_id": "OFknl9Iz", + "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": [ + "12" + ], + "fan_max_speed": [ + "30" + ], + "filament_cost": [ + "26.99" + ], + "filament_density": [ + "1.08" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_type": [ + "ABS-GF" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "5.3" + ], + "overhang_fan_speed": [ + "30" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "4" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ASA @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL A1 0.2 nozzle.json index e8bf20f799..52d1c45a6b 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL A1 0.2 nozzle.json @@ -1,20 +1,20 @@ { - "type": "filament", - "name": "Bambu ASA @BBL A1 0.2 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_10", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu ASA @BBL A1 0.2 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_10", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ASA @BBL A1 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL A1 0.4 nozzle.json index 47ee685e30..97017c4fa3 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL A1 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL A1 0.4 nozzle.json @@ -1,20 +1,20 @@ { - "type": "filament", - "name": "Bambu ASA @BBL A1 0.4 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_09", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu ASA @BBL A1 0.4 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_09", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ASA @BBL A1 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL A1 0.6 nozzle.json index 61b62b138d..8aa9d6f38b 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL A1 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL A1 0.6 nozzle.json @@ -1,21 +1,21 @@ { - "type": "filament", - "name": "Bambu ASA @BBL A1 0.6 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_08", - "instantiation": "true", - "fan_min_speed": [ - "25" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "compatible_printers": [ - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu ASA @BBL A1 0.6 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_08", + "instantiation": "true", + "fan_min_speed": [ + "25" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "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 ASA @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL H2C 0.2 nozzle.json index 0265544a71..d219538b6d 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL H2C 0.2 nozzle.json @@ -1,201 +1,104 @@ { - "type": "filament", - "name": "Bambu ASA @BBL H2C 0.2 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_24", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.0094" - ], - "counter_coef_3": [ - "-0.0092" - ], - "counter_limit_max": [ - "0.2258" - ], - "counter_limit_min": [ - "-0.0092" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_pre_cooling_temperature_nc": [ - "230", - "230" - ], - "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.0013" - ], - "hole_coef_3": [ - "0.1261" - ], - "hole_limit_max": [ - "0.1586" - ], - "hole_limit_min": [ - "0.1261" - ], - "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": [ - "270", - "270" - ], - "overhang_fan_speed": [ - "100" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "85" - ], - "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 ASA @BBL H2C 0.2 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_24", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "counter_limit_min": [ + "-0.0092" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_pre_cooling_temperature_nc": [ + "230", + "230" + ], + "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.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "hole_limit_min": [ + "0.1261" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "temperature_vitrification": [ + "85" + ], + "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 ASA @BBL H2C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL H2C 0.6 nozzle.json index 6dd2e76bce..4607a76875 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL H2C 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL H2C 0.6 nozzle.json @@ -1,198 +1,135 @@ { - "type": "filament", - "name": "Bambu ASA @BBL H2C 0.6 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_37", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.0094" - ], - "counter_coef_3": [ - "-0.0092" - ], - "counter_limit_max": [ - "0.2258" - ], - "counter_limit_min": [ - "-0.0092" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "25", - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "230", - "230" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "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.0013" - ], - "hole_coef_3": [ - "0.1261" - ], - "hole_limit_max": [ - "0.1586" - ], - "hole_limit_min": [ - "0.1261" - ], - "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": [ - "270", - "270" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "85" - ], - "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 ASA @BBL H2C 0.6 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_37", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_min": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "25", + "30", + "25" + ], + "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" + ], + "filament_change_length_nc": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "0.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_min": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "85" + ], + "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 ASA @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL H2C 0.8 nozzle.json index f0597a6b6b..9e423a7cd8 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL H2C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL H2C 0.8 nozzle.json @@ -1,198 +1,121 @@ { - "type": "filament", - "name": "Bambu ASA @BBL H2C 0.8 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_38", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.0094" - ], - "counter_coef_3": [ - "-0.0092" - ], - "counter_limit_max": [ - "0.2258" - ], - "counter_limit_min": [ - "-0.0092" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "25", - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "230", - "230" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "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.0013" - ], - "hole_coef_3": [ - "0.1261" - ], - "hole_limit_max": [ - "0.1586" - ], - "hole_limit_min": [ - "0.1261" - ], - "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": [ - "270", - "270" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "85" - ], - "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 ASA @BBL H2C 0.8 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_38", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "counter_limit_min": [ + "-0.0092" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "25", + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "230", + "230" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "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.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "hole_limit_min": [ + "0.1261" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "temperature_vitrification": [ + "85" + ], + "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 ASA @BBL H2C.json b/resources/profiles/BBL/filament/Bambu ASA @BBL H2C.json index c9a9653a42..dd929d197a 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL H2C.json @@ -1,198 +1,135 @@ { - "type": "filament", - "name": "Bambu ASA @BBL H2C", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_23", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.0094" - ], - "counter_coef_3": [ - "-0.0092" - ], - "counter_limit_max": [ - "0.2258" - ], - "counter_limit_min": [ - "-0.0092" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "20", - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "230", - "230" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "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.0013" - ], - "hole_coef_3": [ - "0.1261" - ], - "hole_limit_max": [ - "0.1586" - ], - "hole_limit_min": [ - "0.1261" - ], - "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": [ - "270", - "270" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "85" - ], - "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 ASA @BBL H2C", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_23", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_min": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "20", + "30", + "20" + ], + "filament_retraction_length": [ + "0.4", + "0.6", + "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" + ], + "filament_change_length_nc": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "0.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_min": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "85" + ], + "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 ASA @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL H2D 0.2 nozzle.json index 1f1678b52b..97240d7f90 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL H2D 0.2 nozzle.json @@ -1,128 +1,77 @@ { - "type": "filament", - "name": "Bambu ASA @BBL H2D 0.2 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_12", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "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": [ - "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": "Bambu ASA @BBL H2D 0.2 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_12", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "counter_limit_min": [ + "-0.0092" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "0.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "hole_limit_min": [ + "0.1261" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "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/Bambu ASA @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL H2D 0.4 nozzle.json index a081558c0a..156abeec8c 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL H2D 0.4 nozzle.json @@ -1,149 +1,103 @@ { - "type": "filament", - "name": "Bambu ASA @BBL H2D 0.4 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_13", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.007" - ], - "counter_coef_3": [ - "0.003" - ], - "counter_limit_max": [ - "0.1" - ], - "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": [ - "20", - "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.25" - ], - "hole_limit_min": [ - "-0.088" - ], - "hole_limit_max": [ - "0.14" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "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" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu ASA @BBL H2D 0.4 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_13", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "counter_limit_min": [ + "-0.0092" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "20", + "35", + "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" + ], + "hole_coef_2": [ + "0.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "hole_limit_min": [ + "0.1261" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "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 ASA @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL H2D 0.6 nozzle.json index fdb51cedba..73850c5f55 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL H2D 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL H2D 0.6 nozzle.json @@ -1,128 +1,103 @@ { - "type": "filament", - "name": "Bambu ASA @BBL H2D 0.6 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_11", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "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" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "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.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu ASA @BBL H2D 0.6 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_11", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "counter_limit_min": [ + "-0.0092" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "25", + "35", + "25" + ], + "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.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "hole_limit_min": [ + "0.1261" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "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 ASA @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL H2D 0.8 nozzle.json index 6c16c18dc7..b10ab76104 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL H2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL H2D 0.8 nozzle.json @@ -1,132 +1,97 @@ { - "type": "filament", - "name": "Bambu ASA @BBL H2D 0.8 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_33", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "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" - ], - "filament_extruder_id": [ - "1", - "1" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu ASA @BBL H2D 0.8 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_33", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "counter_limit_min": [ + "-0.0092" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "25", + "35" + ], + "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_extruder_id": [ + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "0.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "hole_limit_min": [ + "0.1261" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "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 ASA @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL H2DP 0.2 nozzle.json index e728c14b86..1225a33407 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL H2DP 0.2 nozzle.json @@ -1,128 +1,47 @@ { - "type": "filament", - "name": "Bambu ASA @BBL H2DP 0.2 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_18", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "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": [ - "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": "Bambu ASA @BBL H2DP 0.2 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_18", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "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": [ + "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/Bambu ASA @BBL H2DP 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL H2DP 0.4 nozzle.json index 2d7a3e0b78..9e778800b9 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL H2DP 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL H2DP 0.4 nozzle.json @@ -1,149 +1,84 @@ { - "type": "filament", - "name": "Bambu ASA @BBL H2DP 0.4 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_19", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.007" - ], - "counter_coef_3": [ - "0.003" - ], - "counter_limit_max": [ - "0.1" - ], - "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": [ - "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.006" - ], - "hole_coef_3": [ - "0.25" - ], - "hole_limit_min": [ - "-0.088" - ], - "hole_limit_max": [ - "0.14" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "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" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu ASA @BBL H2DP 0.4 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_19", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.007" + ], + "counter_coef_3": [ + "0.003" + ], + "counter_limit_max": [ + "0.1" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "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.006" + ], + "hole_coef_3": [ + "0.25" + ], + "hole_limit_max": [ + "0.14" + ], + "hole_limit_min": [ + "-0.088" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "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 ASA @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL H2DP 0.6 nozzle.json index 6ff818396f..37552482a1 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL H2DP 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL H2DP 0.6 nozzle.json @@ -1,128 +1,63 @@ { - "type": "filament", - "name": "Bambu ASA @BBL H2DP 0.6 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_17", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "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" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "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.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu ASA @BBL H2DP 0.6 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_17", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "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_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "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 ASA @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL H2DP 0.8 nozzle.json index 7904005cab..9fb3fc0ddc 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL H2DP 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL H2DP 0.8 nozzle.json @@ -1,128 +1,63 @@ { - "type": "filament", - "name": "Bambu ASA @BBL H2DP 0.8 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_34", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "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" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu ASA @BBL H2DP 0.8 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_34", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "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_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "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 ASA @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL H2S 0.2 nozzle.json index 14b6adc4e3..540af08837 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL H2S 0.2 nozzle.json @@ -1,134 +1,95 @@ { - "type": "filament", - "name": "Bambu ASA @BBL H2S 0.2 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_27", - "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_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_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" - ], - "overhang_fan_speed": [ - "100" - ], - "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 ASA @BBL H2S 0.2 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_27", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_min": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "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.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_min": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "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": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "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/Bambu ASA @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL H2S 0.6 nozzle.json index 1bc719e589..3b583b2865 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL H2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL H2S 0.6 nozzle.json @@ -1,134 +1,119 @@ { - "type": "filament", - "name": "Bambu ASA @BBL H2S 0.6 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_36", - "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": [ - "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" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "overhang_fan_speed": [ - "100" - ], - "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 ASA @BBL H2S 0.6 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_36", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_min": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "25", + "35", + "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.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_min": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "overhang_fan_speed": [ + "100" + ], + "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 ASA @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL H2S 0.8 nozzle.json index 9723a3756f..9c15cc5cc3 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL H2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL H2S 0.8 nozzle.json @@ -1,134 +1,107 @@ { - "type": "filament", - "name": "Bambu ASA @BBL H2S 0.8 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_35", - "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": [ - "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" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "overhang_fan_speed": [ - "100" - ], - "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 ASA @BBL H2S 0.8 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_35", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_min": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "25", + "35" + ], + "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.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_min": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "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": [ + "100" + ], + "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 ASA @BBL H2S.json b/resources/profiles/BBL/filament/Bambu ASA @BBL H2S.json index 99be696bec..b36583a6e4 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL H2S.json @@ -1,134 +1,119 @@ { - "type": "filament", - "name": "Bambu ASA @BBL H2S", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_26", - "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": [ - "20", - "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" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "overhang_fan_speed": [ - "100" - ], - "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 ASA @BBL H2S", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_26", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_min": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "20", + "35", + "20" + ], + "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.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_min": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "overhang_fan_speed": [ + "100" + ], + "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 ASA @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL P2S 0.2 nozzle.json index cf15742854..d93ebff0f4 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL P2S 0.2 nozzle.json @@ -1,192 +1,101 @@ { - "type": "filament", - "name": "Bambu ASA @BBL P2S 0.2 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_15", - "instantiation": "true", - "activate_air_filtration": [ - "0" - ], - "chamber_temperatures": [ - "65" - ], - "eng_plate_temp": [ - "90" - ], - "eng_plate_temp_initial_layer": [ - "90" - ], - "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": [ - "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": [ - "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" - ], - "hot_plate_temp": [ - "90" - ], - "hot_plate_temp_initial_layer": [ - "90" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "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": "Bambu ASA @BBL P2S 0.2 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_15", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "counter_limit_min": [ + "-0.0092" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "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_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "hole_coef_2": [ + "0.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "hole_limit_min": [ + "0.1261" + ], + "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 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 ASA @BBL P2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL P2S 0.4 nozzle.json index 11ab00acb8..8751a771b7 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL P2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL P2S 0.4 nozzle.json @@ -1,186 +1,102 @@ { - "type": "filament", - "name": "Bambu ASA @BBL P2S 0.4 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_16", - "instantiation": "true", - "activate_air_filtration": [ - "0" - ], - "chamber_temperatures": [ - "65" - ], - "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": [ - "18", - "25" - ], - "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": [ - "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" - ], - "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": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "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" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu ASA @BBL P2S 0.4 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_16", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_min": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "18", + "25", + "18" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "0.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_min": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "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 ASA @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL P2S 0.6 nozzle.json index 3ae3da7e29..6b8e36bb44 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL P2S 0.6 nozzle.json @@ -1,189 +1,115 @@ { - "type": "filament", - "name": "Bambu ASA @BBL P2S 0.6 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_14", - "instantiation": "true", - "activate_air_filtration": [ - "0" - ], - "chamber_temperatures": [ - "65" - ], - "eng_plate_temp": [ - "90" - ], - "eng_plate_temp_initial_layer": [ - "90" - ], - "fan_min_speed": [ - "25" - ], - "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", - "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" - ], - "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": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "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.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu ASA @BBL P2S 0.6 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_14", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_min": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "fan_min_speed": [ + "25" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "18", + "35", + "18" + ], + "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" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "0.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_min": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "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 ASA @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL P2S 0.8 nozzle.json index b9b1974d28..284e476b53 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL P2S 0.8 nozzle.json @@ -1,186 +1,91 @@ { - "type": "filament", - "name": "Bambu ASA @BBL P2S 0.8 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_32", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "eng_plate_temp": [ - "90" - ], - "eng_plate_temp_initial_layer": [ - "90" - ], - "fan_min_speed": [ - "25" - ], - "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", - "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": [ - "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" - ], - "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": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu ASA @BBL P2S 0.8 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_32", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "counter_limit_min": [ + "-0.0092" + ], + "fan_min_speed": [ + "25" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "18", + "35" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "0.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "hole_limit_min": [ + "0.1261" + ], + "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 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 ASA @BBL X1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL X1 0.2 nozzle.json index 0f942eb9c0..d7fa4d563a 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL X1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL X1 0.2 nozzle.json @@ -1,119 +1,50 @@ { - "type": "filament", - "name": "Bambu ASA @BBL X1 0.2 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_03", - "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.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": [ - "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 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu ASA @BBL X1 0.2 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_03", + "instantiation": "true", + "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": [ + "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 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ASA @BBL X1 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL X1 0.6 nozzle.json index f3ab38a4c2..63e38090f7 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL X1 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL X1 0.6 nozzle.json @@ -1,125 +1,60 @@ { - "type": "filament", - "name": "Bambu ASA @BBL X1 0.6 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_04", - "instantiation": "true", - "fan_min_speed": [ - "25" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_retraction_speed": [ - "0.4", - "0.4" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "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_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_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" - ], - "textured_plate_temp_initial_layer": [ - "V" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.6 nozzle" - ] -} + "type": "filament", + "name": "Bambu ASA @BBL X1 0.6 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_04", + "instantiation": "true", + "fan_min_speed": [ + "25" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_speed": [ + "0.4", + "0.4" + ], + "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" + ], + "textured_plate_temp_initial_layer": [ + "V" + ], + "compatible_printers": [ + "Bambu Lab X1 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ASA @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL X1C 0.2 nozzle.json index 03c9bd988a..442ccbdfc5 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL X1C 0.2 nozzle.json @@ -1,121 +1,52 @@ { - "type": "filament", - "name": "Bambu ASA @BBL X1C 0.2 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_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.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": [ - "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.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu ASA @BBL X1C 0.2 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_01", + "instantiation": "true", + "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": [ + "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.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ASA @BBL X1C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL X1C 0.4 nozzle.json index aba1ae8e63..358a7e83c0 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL X1C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL X1C 0.4 nozzle.json @@ -1,126 +1,65 @@ { - "type": "filament", - "name": "Bambu ASA @BBL X1C 0.4 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_02", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "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": [ - "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": [ - "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 P1S 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu ASA @BBL X1C 0.4 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_02", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "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_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": [ + "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 0.4 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ASA @BBL X1C.json b/resources/profiles/BBL/filament/Bambu ASA @BBL X1C.json index 043405a082..ab1677285e 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL X1C.json @@ -1,127 +1,66 @@ { - "type": "filament", - "name": "Bambu ASA @BBL X1C", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_00", - "instantiation": "true", - "fan_min_speed": [ - "25" - ], - "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": [ - "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": [ - "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.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab P1P 0.6 nozzle" - ] -} + "type": "filament", + "name": "Bambu ASA @BBL X1C", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_00", + "instantiation": "true", + "fan_min_speed": [ + "25" + ], + "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_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": [ + "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.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1P 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ASA @BBL X1E 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL X1E 0.2 nozzle.json index 434e5b3169..bf2df2143a 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL X1E 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL X1E 0.2 nozzle.json @@ -1,119 +1,50 @@ { - "type": "filament", - "name": "Bambu ASA @BBL X1E 0.2 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_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": [ - "1", - "1" - ], - "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": [ - "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": [ - "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 X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu ASA @BBL X1E 0.2 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_06", + "instantiation": "true", + "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": [ + "270", + "270" + ], + "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/Bambu ASA @BBL X1E 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL X1E 0.4 nozzle.json index 8200afe8b1..9080ee1bb6 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL X1E 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL X1E 0.4 nozzle.json @@ -1,119 +1,50 @@ { - "type": "filament", - "name": "Bambu ASA @BBL X1E 0.4 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_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": [ - "1", - "1" - ], - "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": [ - "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": [ - "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 X1E 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu ASA @BBL X1E 0.4 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_07", + "instantiation": "true", + "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": [ + "270", + "270" + ], + "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" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ASA @BBL X1E.json b/resources/profiles/BBL/filament/Bambu ASA @BBL X1E.json index 3a45999811..9336323c61 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL X1E.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL X1E.json @@ -1,123 +1,54 @@ { - "type": "filament", - "name": "Bambu ASA @BBL X1E", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_05", - "instantiation": "true", - "fan_min_speed": [ - "25" - ], - "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": [ - "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": [ - "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": [ - "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 X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu ASA @BBL X1E", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_05", + "instantiation": "true", + "fan_min_speed": [ + "25" + ], + "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": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "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" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ASA @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL X2D 0.2 nozzle.json index a2d4ee198c..ae13ba1ba3 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL X2D 0.2 nozzle.json @@ -1,293 +1,128 @@ { - "type": "filament", - "name": "Bambu ASA @BBL X2D 0.2 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_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": [ - "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": [ - "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" - ], - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.0094" - ], - "counter_coef_3": [ - "-0.0092" - ], - "counter_limit_max": [ - "0.2258" - ], - "counter_limit_min": [ - "-0.0092" - ], - "filament_extruder_compatibility": [ - "24" - ], - "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" - ], - "hole_coef_2": [ - "0.0013" - ], - "hole_coef_3": [ - "0.1261" - ], - "hole_limit_max": [ - "0.1586" - ], - "hole_limit_min": [ - "0.1261" - ], - "nozzle_temperature": [ - "270", - "270", - "270", - "270" - ], - "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": "Bambu ASA @BBL X2D 0.2 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_21", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "counter_limit_min": [ + "-0.0092" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "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", + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "hole_coef_2": [ + "0.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "hole_limit_min": [ + "0.1261" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "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/Bambu ASA @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL X2D 0.4 nozzle.json index 0049bdd6bd..f5aedbd3c7 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL X2D 0.4 nozzle.json @@ -1,293 +1,157 @@ { - "type": "filament", - "name": "Bambu ASA @BBL X2D 0.4 nozzle", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_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", - "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" - ], - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.0094" - ], - "counter_coef_3": [ - "-0.0092" - ], - "counter_limit_max": [ - "0.2258" - ], - "counter_limit_min": [ - "-0.0092" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "18", - "25", - "18", - "20" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "270" - ], - "hole_coef_2": [ - "0.0013" - ], - "hole_coef_3": [ - "0.1261" - ], - "hole_limit_max": [ - "0.1586" - ], - "hole_limit_min": [ - "0.1261" - ], - "nozzle_temperature": [ - "270", - "270", - "270", - "270" - ], - "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": "Bambu ASA @BBL X2D 0.4 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_22", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "counter_limit_min": [ + "-0.0092" + ], + "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": [ + "18", + "25", + "18", + "18", + "20", + "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": [ + "270" + ], + "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" + ], + "hole_coef_2": [ + "0.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "hole_limit_min": [ + "0.1261" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270", + "270", + "270" + ], + "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" + ], + "temperature_vitrification": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu ASA @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..4bf30b3fce --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL X2D 0.8 nozzle.json @@ -0,0 +1,149 @@ +{ + "type": "filament", + "name": "Bambu ASA @BBL X2D 0.8 nozzle", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_50", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "counter_limit_min": [ + "-0.0092" + ], + "fan_min_speed": [ + "25" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "80", + "65", + "80" + ], + "filament_dev_ams_drying_time": [ + "12", + "8.0", + "12", + "8.0" + ], + "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": [ + "18", + "35", + "18", + "18" + ], + "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": [ + "270" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "hole_coef_2": [ + "0.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "hole_limit_min": [ + "0.1261" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "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.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ASA @BBL X2D.json b/resources/profiles/BBL/filament/Bambu ASA @BBL X2D.json index b3b5e73c4c..38c96bff13 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL X2D.json @@ -1,297 +1,157 @@ { - "type": "filament", - "name": "Bambu ASA @BBL X2D", - "inherits": "Bambu ASA @base", - "from": "system", - "setting_id": "GFSB01_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": [ - "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": [ - "65" - ], - "counter_coef_2": [ - "0.0094" - ], - "counter_coef_3": [ - "-0.0092" - ], - "counter_limit_max": [ - "0.2258" - ], - "counter_limit_min": [ - "-0.0092" - ], - "fan_min_speed": [ - "25" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "18", - "35", - "18", - "18" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "270" - ], - "hole_coef_2": [ - "0.0013" - ], - "hole_coef_3": [ - "0.1261" - ], - "hole_limit_max": [ - "0.1586" - ], - "hole_limit_min": [ - "0.1261" - ], - "nozzle_temperature": [ - "270", - "270", - "270", - "270" - ], - "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": "Bambu ASA @BBL X2D", + "inherits": "Bambu ASA @base", + "from": "system", + "setting_id": "GFSB01_20", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0094" + ], + "counter_coef_3": [ + "-0.0092" + ], + "counter_limit_max": [ + "0.2258" + ], + "counter_limit_min": [ + "-0.0092" + ], + "fan_min_speed": [ + "25" + ], + "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": [ + "18", + "35", + "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": [ + "270" + ], + "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" + ], + "hole_coef_2": [ + "0.0013" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1586" + ], + "hole_limit_min": [ + "0.1261" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270", + "270", + "270" + ], + "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" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu ASA @base.json b/resources/profiles/BBL/filament/Bambu ASA @base.json index 5e66d50419..e1314043ef 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @base.json +++ b/resources/profiles/BBL/filament/Bambu ASA @base.json @@ -1,57 +1,54 @@ { - "type": "filament", - "name": "Bambu ASA @base", - "inherits": "fdm_filament_asa", - "from": "system", - "filament_id": "OFfBpSRI", - "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" - ], - "fan_max_speed": [ - "35" - ], - "filament_cost": [ - "31.99" - ], - "filament_density": [ - "1.05" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "impact_strength_z": [ - "4.9" - ], - "nozzle_temperature": [ - "270" - ], - "nozzle_temperature_initial_layer": [ - "270" - ], - "slow_down_layer_time": [ - "12" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ] -} + "type": "filament", + "name": "Bambu ASA @base", + "inherits": "fdm_filament_asa", + "from": "system", + "filament_id": "OFfBpSRI", + "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" + ], + "fan_max_speed": [ + "35" + ], + "filament_cost": [ + "26.99" + ], + "filament_density": [ + "1.05" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL A1.json b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL A1.json index 08c89cd1d2..ceca584ce1 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL A1.json @@ -1,13 +1,13 @@ { - "type": "filament", - "name": "Bambu ASA-Aero @BBL A1", - "inherits": "Bambu ASA-Aero @base", - "from": "system", - "setting_id": "GFSB02_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 ASA-Aero @BBL A1", + "inherits": "Bambu ASA-Aero @base", + "from": "system", + "setting_id": "GFSB02_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 ASA-Aero @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL H2C 0.4 nozzle.json index 54d58171c5..f26386bdfc 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL H2C 0.4 nozzle.json @@ -1,174 +1,116 @@ { - "type": "filament", - "name": "Bambu ASA-Aero @BBL H2C 0.4 nozzle", - "inherits": "Bambu ASA-Aero @base", - "from": "system", - "setting_id": "GFSB02_08", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.52", - "0.52" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_retraction_length": [ - "1.5", - "1.5" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "5", - "5" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop": [ - "0", - "0" - ], - "filament_z_hop_types": [ - "Normal Lift", - "Normal 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" - ], - "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": [ - "270", - "270" - ], - "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 ASA-Aero @BBL H2C 0.4 nozzle", + "inherits": "Bambu ASA-Aero @base", + "from": "system", + "setting_id": "GFSB02_08", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.52", + "0.52", + "0.52" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "1.5", + "1.5", + "1.5" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "5", + "5", + "5" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop": [ + "0", + "0", + "0" + ], + "filament_z_hop_types": [ + "Normal Lift", + "Normal Lift", + "Normal 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": [ + "270", + "270", + "270" + ], + "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/Bambu ASA-Aero @BBL H2C.json b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL H2C.json index af6afa3b7b..c9d84e07dc 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL H2C.json @@ -1,175 +1,117 @@ { - "type": "filament", - "name": "Bambu ASA-Aero @BBL H2C", - "inherits": "Bambu ASA-Aero @base", - "from": "system", - "setting_id": "GFSB02_09", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.52", - "0.52" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_retraction_length": [ - "1.5", - "1.5" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "5", - "5" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop": [ - "0", - "0" - ], - "filament_z_hop_types": [ - "Normal Lift", - "Normal 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" - ], - "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": [ - "270", - "270" - ], - "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 ASA-Aero @BBL H2C", + "inherits": "Bambu ASA-Aero @base", + "from": "system", + "setting_id": "GFSB02_09", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.52", + "0.52", + "0.52" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "1.5", + "1.5", + "1.5" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "5", + "5", + "5" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop": [ + "0", + "0", + "0" + ], + "filament_z_hop_types": [ + "Normal Lift", + "Normal Lift", + "Normal 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": [ + "270", + "270", + "270" + ], + "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/Bambu ASA-Aero @BBL H2D.json b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL H2D.json index 0e2e74f3f3..50e18b0199 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL H2D.json @@ -1,130 +1,66 @@ { - "type": "filament", - "name": "Bambu ASA-Aero @BBL H2D", - "inherits": "Bambu ASA-Aero @base", - "from": "system", - "setting_id": "GFSB02_03", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.52", - "0.52" - ], - "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": [ - "270", - "270" - ], - "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": "Bambu ASA-Aero @BBL H2D", + "inherits": "Bambu ASA-Aero @base", + "from": "system", + "setting_id": "GFSB02_03", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.52", + "0.52", + "0.52" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "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/Bambu ASA-Aero @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL H2DP.json index f77d850506..2b4239fd68 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL H2DP.json @@ -1,130 +1,53 @@ { - "type": "filament", - "name": "Bambu ASA-Aero @BBL H2DP", - "inherits": "Bambu ASA-Aero @base", - "from": "system", - "setting_id": "GFSB02_05", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.52", - "0.52" - ], - "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": [ - "270", - "270" - ], - "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": "Bambu ASA-Aero @BBL H2DP", + "inherits": "Bambu ASA-Aero @base", + "from": "system", + "setting_id": "GFSB02_05", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.52", + "0.52" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "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/Bambu ASA-Aero @BBL H2S.json b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL H2S.json index 3c76624c3d..8d5c0248b2 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL H2S.json @@ -1,130 +1,96 @@ { - "type": "filament", - "name": "Bambu ASA-Aero @BBL H2S", - "inherits": "Bambu ASA-Aero @base", - "from": "system", - "setting_id": "GFSB02_10", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.52", - "0.52" - ], - "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": [ - "1.5", - "1.5" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "5", - "5" - ], - "filament_z_hop": [ - "0", - "0" - ], - "filament_z_hop_types": [ - "Normal Lift", - "Normal 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": [ - "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 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 ASA-Aero @BBL H2S", + "inherits": "Bambu ASA-Aero @base", + "from": "system", + "setting_id": "GFSB02_10", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.52", + "0.52", + "0.52" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_retraction_length": [ + "1.5", + "1.5", + "1.5" + ], + "filament_wipe_distance": [ + "5", + "5", + "5" + ], + "filament_prime_volume": [ + "30" + ], + "filament_z_hop": [ + "0", + "0", + "0" + ], + "filament_z_hop_types": [ + "Normal Lift", + "Normal Lift", + "Normal 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": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "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 ASA-Aero @BBL P1P.json b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL P1P.json index 00ea67fa8e..b6dbf0022b 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL P1P.json +++ b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL P1P.json @@ -1,121 +1,60 @@ { - "type": "filament", - "name": "Bambu ASA-Aero @BBL P1P", - "inherits": "Bambu ASA-Aero @base", - "from": "system", - "setting_id": "GFSB02_01", - "instantiation": "true", - "filament_flow_ratio": [ - "0.52", - "0.52" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_retraction_length": [ - "1.5", - "1.5" - ], - "filament_wipe_distance": [ - "5", - "5" - ], - "filament_z_hop_types": [ - "Normal Lift", - "Normal Lift" - ], - "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_z_hop": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_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 P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu ASA-Aero @BBL P1P", + "inherits": "Bambu ASA-Aero @base", + "from": "system", + "setting_id": "GFSB02_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.52", + "0.52" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_retraction_length": [ + "1.5", + "1.5" + ], + "filament_wipe_distance": [ + "5", + "5" + ], + "filament_z_hop_types": [ + "Normal Lift", + "Normal Lift" + ], + "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 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 ASA-Aero @BBL P2S.json b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL P2S.json index 832871142c..3a8ecc97b9 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL P2S.json @@ -1,170 +1,90 @@ { - "type": "filament", - "name": "Bambu ASA-Aero @BBL P2S", - "inherits": "Bambu ASA-Aero @base", - "from": "system", - "setting_id": "GFSB02_04", - "instantiation": "true", - "activate_air_filtration": [ - "0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.52", - "0.52" - ], - "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": [ - "1.5", - "1.5" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "5", - "5" - ], - "filament_z_hop": [ - "0", - "0" - ], - "filament_z_hop_types": [ - "Normal Lift", - "Normal 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": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "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 ASA-Aero @BBL P2S", + "inherits": "Bambu ASA-Aero @base", + "from": "system", + "setting_id": "GFSB02_04", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.52", + "0.52", + "0.52" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "1.5", + "1.5", + "1.5" + ], + "filament_wipe_distance": [ + "5", + "5", + "5" + ], + "filament_z_hop": [ + "0", + "0", + "0" + ], + "filament_z_hop_types": [ + "Normal Lift", + "Normal Lift", + "Normal Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "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 ASA-Aero @BBL X1C.json b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL X1C.json index f434bea9f5..8b6bc1aadb 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL X1C.json @@ -1,130 +1,69 @@ { - "type": "filament", - "name": "Bambu ASA-Aero @BBL X1C", - "inherits": "Bambu ASA-Aero @base", - "from": "system", - "setting_id": "GFSB02_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.52", - "0.52" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_retraction_length": [ - "1.5", - "1.5" - ], - "filament_wipe_distance": [ - "5", - "5" - ], - "filament_z_hop_types": [ - "Normal Lift", - "Normal Lift" - ], - "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_z_hop": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_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 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 ASA-Aero @BBL X1C", + "inherits": "Bambu ASA-Aero @base", + "from": "system", + "setting_id": "GFSB02_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.52", + "0.52" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_retraction_length": [ + "1.5", + "1.5" + ], + "filament_wipe_distance": [ + "5", + "5" + ], + "filament_z_hop_types": [ + "Normal Lift", + "Normal Lift" + ], + "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 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 ASA-Aero @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL X2D 0.4 nozzle.json index 4e948ec55a..68d386090f 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL X2D 0.4 nozzle.json @@ -1,269 +1,114 @@ { - "type": "filament", - "name": "Bambu ASA-Aero @BBL X2D 0.4 nozzle", - "inherits": "Bambu ASA-Aero @base", - "from": "system", - "setting_id": "GFSB02_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": [ - "1.5", - "1.5", - "1.5", - "1.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": [ - "5", - "5", - "5", - "5" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Normal Lift", - "Normal Lift", - "Normal Lift", - "Normal 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" - ], - "chamber_temperatures": [ - "60" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.52", - "0.52", - "0.52", - "0.52" - ], - "filament_max_volumetric_speed": [ - "3", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "270" - ], - "nozzle_temperature": [ - "270", - "270", - "270", - "270" - ], - "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": "Bambu ASA-Aero @BBL X2D 0.4 nozzle", + "inherits": "Bambu ASA-Aero @base", + "from": "system", + "setting_id": "GFSB02_06", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.52", + "0.52", + "0.52", + "0.52", + "0.52", + "0.52" + ], + "filament_max_volumetric_speed": [ + "6", + "12", + "6", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "1.5", + "1.5", + "1.5", + "1.5", + "1.5", + "1.5" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "filament_wipe_distance": [ + "5", + "5", + "5", + "5", + "5", + "5" + ], + "filament_z_hop_types": [ + "Normal Lift", + "Normal Lift", + "Normal Lift", + "Normal Lift", + "Normal Lift", + "Normal Lift" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270", + "270", + "270" + ], + "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/Bambu ASA-Aero @BBL X2D.json b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL X2D.json index 7b2293c644..1d7084126f 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu ASA-Aero @BBL X2D.json @@ -1,270 +1,115 @@ { - "type": "filament", - "name": "Bambu ASA-Aero @BBL X2D", - "inherits": "Bambu ASA-Aero @base", - "from": "system", - "setting_id": "GFSB02_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": [ - "1.5", - "1.5", - "1.5", - "1.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": [ - "5", - "5", - "5", - "5" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Normal Lift", - "Normal Lift", - "Normal Lift", - "Normal 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" - ], - "chamber_temperatures": [ - "60" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.52", - "0.52", - "0.52", - "0.52" - ], - "filament_max_volumetric_speed": [ - "3", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "270" - ], - "nozzle_temperature": [ - "270", - "270", - "270", - "270" - ], - "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": "Bambu ASA-Aero @BBL X2D", + "inherits": "Bambu ASA-Aero @base", + "from": "system", + "setting_id": "GFSB02_07", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.52", + "0.52", + "0.52", + "0.52", + "0.52", + "0.52" + ], + "filament_max_volumetric_speed": [ + "3", + "12", + "3", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "1.5", + "1.5", + "1.5", + "1.5", + "1.5", + "1.5" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "filament_wipe_distance": [ + "5", + "5", + "5", + "5", + "5", + "5" + ], + "filament_z_hop_types": [ + "Normal Lift", + "Normal Lift", + "Normal Lift", + "Normal Lift", + "Normal Lift", + "Normal Lift" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270", + "270", + "270" + ], + "retraction_distances_when_ec": [ + "6", + "3", + "6", + "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 ASA-Aero @base.json b/resources/profiles/BBL/filament/Bambu ASA-Aero @base.json index 43c69be716..e922b2c7df 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-Aero @base.json +++ b/resources/profiles/BBL/filament/Bambu ASA-Aero @base.json @@ -1,66 +1,66 @@ { - "type": "filament", - "name": "Bambu ASA-Aero @base", - "inherits": "fdm_filament_asa", - "from": "system", - "filament_id": "OFXzQ4yL", - "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: ASA Aero Printing Guide.", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "30" - ], - "filament_cost": [ - "49.99" - ], - "filament_density": [ - "0.99" - ], - "filament_flow_ratio": [ - "0.52" - ], - "filament_max_volumetric_speed": [ - "12" - ], - "filament_retraction_length": [ - "1.5" - ], - "filament_type": [ - "ASA-AERO" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "filament_wipe_distance": [ - "5" - ], - "filament_z_hop_types": [ - "Normal Lift" - ], - "filament_dev_drying_cooling_temperature": [ - "70" - ], - "impact_strength_z": [ - "3.4" - ], - "nozzle_temperature": [ - "270" - ], - "nozzle_temperature_initial_layer": [ - "270" - ], - "overhang_fan_speed": [ - "50" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "slow_down_layer_time": [ - "5" - ] -} + "type": "filament", + "name": "Bambu ASA-Aero @base", + "inherits": "fdm_filament_asa", + "from": "system", + "filament_id": "OFXzQ4yL", + "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: ASA Aero Printing Guide.", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_cost": [ + "46.99" + ], + "filament_density": [ + "0.99" + ], + "filament_dev_drying_cooling_temperature": [ + "70" + ], + "filament_flow_ratio": [ + "0.52" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_retraction_length": [ + "1.5" + ], + "filament_type": [ + "ASA-AERO" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "filament_wipe_distance": [ + "5" + ], + "filament_z_hop_types": [ + "Normal Lift" + ], + "impact_strength_z": [ + "3.4" + ], + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "overhang_fan_speed": [ + "50" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "slow_down_layer_time": [ + "5" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL A1 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL A1 0.6 nozzle.json index 10dddf6434..442f2b6230 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL A1 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL A1 0.6 nozzle.json @@ -1,12 +1,12 @@ { - "type": "filament", - "name": "Bambu ASA-CF @BBL A1 0.6 nozzle", - "inherits": "Bambu ASA-CF @base", - "from": "system", - "setting_id": "GFSB51_05", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu ASA-CF @BBL A1 0.6 nozzle", + "inherits": "Bambu ASA-CF @base", + "from": "system", + "setting_id": "GFSB51_05", + "instantiation": "true", + "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 ASA-CF @BBL A1.json b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL A1.json index 11fc104be5..70c164accf 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL A1.json @@ -1,11 +1,11 @@ { - "type": "filament", - "name": "Bambu ASA-CF @BBL A1", - "inherits": "Bambu ASA-CF @base", - "from": "system", - "setting_id": "GFSB51_04", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu ASA-CF @BBL A1", + "inherits": "Bambu ASA-CF @base", + "from": "system", + "setting_id": "GFSB51_04", + "instantiation": "true", + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2C 0.4 nozzle.json index f6b7e6dc8c..64db4fe9eb 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2C 0.4 nozzle.json @@ -1,180 +1,102 @@ { - "type": "filament", - "name": "Bambu ASA-CF @BBL H2C 0.4 nozzle", - "inherits": "Bambu ASA-CF @base", - "from": "system", - "setting_id": "GFSB51_14", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "eng_plate_temp": [ - "90" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.9", - "0.9" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "235", - "235" - ], - "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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "95" - ], - "textured_plate_temp": [ - "90" - ], - "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 ASA-CF @BBL H2C 0.4 nozzle", + "inherits": "Bambu ASA-CF @base", + "from": "system", + "setting_id": "GFSB51_14", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "eng_plate_temp": [ + "90" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.9", + "0.9", + "0.9" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_pre_cooling_temperature_nc": [ + "235", + "235", + "235" + ], + "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_retraction_length": [ + "1.2", + "1.2", + "1.2" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "95" + ], + "textured_plate_temp": [ + "90" + ], + "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 ASA-CF @BBL H2C.json b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2C.json index 7ae4df95b1..0cf8596dca 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2C.json @@ -1,175 +1,97 @@ { - "type": "filament", - "name": "Bambu ASA-CF @BBL H2C", - "inherits": "Bambu ASA-CF @base", - "from": "system", - "setting_id": "GFSB51_15", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.9", - "0.9" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "235", - "235" - ], - "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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "95" - ], - "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 ASA-CF @BBL H2C", + "inherits": "Bambu ASA-CF @base", + "from": "system", + "setting_id": "GFSB51_15", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.9", + "0.9", + "0.9" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_pre_cooling_temperature_nc": [ + "235", + "235", + "235" + ], + "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_retraction_length": [ + "1.2", + "1.2", + "1.2" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "95" + ], + "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 ASA-CF @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2D 0.4 nozzle.json index ee9d7d06af..53c44ddc9c 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2D 0.4 nozzle.json @@ -1,134 +1,75 @@ { - "type": "filament", - "name": "Bambu ASA-CF @BBL H2D 0.4 nozzle", - "inherits": "Bambu ASA-CF @base", - "from": "system", - "setting_id": "GFSB51_06", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "eng_plate_temp": [ - "90" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.9", - "0.9" - ], - "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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "textured_plate_temp": [ - "90" - ], - "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 ASA-CF @BBL H2D 0.4 nozzle", + "inherits": "Bambu ASA-CF @base", + "from": "system", + "setting_id": "GFSB51_06", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "eng_plate_temp": [ + "90" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.9", + "0.9", + "0.9" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "1.2", + "1.2", + "1.2" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "textured_plate_temp": [ + "90" + ], + "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 ASA-CF @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2D 0.6 nozzle.json index 73f350f6b6..37dc06bc9e 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2D 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2D 0.6 nozzle.json @@ -1,129 +1,70 @@ { - "type": "filament", - "name": "Bambu ASA-CF @BBL H2D 0.6 nozzle", - "inherits": "Bambu ASA-CF @base", - "from": "system", - "setting_id": "GFSB51_07", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.9", - "0.9" - ], - "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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "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 ASA-CF @BBL H2D 0.6 nozzle", + "inherits": "Bambu ASA-CF @base", + "from": "system", + "setting_id": "GFSB51_07", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.9", + "0.9", + "0.9" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "1.2", + "1.2", + "1.2" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "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 ASA-CF @BBL H2DP 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2DP 0.4 nozzle.json index 1e385a3161..b3050aecc6 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2DP 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2DP 0.4 nozzle.json @@ -1,134 +1,61 @@ { - "type": "filament", - "name": "Bambu ASA-CF @BBL H2DP 0.4 nozzle", - "inherits": "Bambu ASA-CF @base", - "from": "system", - "setting_id": "GFSB51_10", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "eng_plate_temp": [ - "90" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.9", - "0.9" - ], - "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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "textured_plate_temp": [ - "90" - ], - "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 ASA-CF @BBL H2DP 0.4 nozzle", + "inherits": "Bambu ASA-CF @base", + "from": "system", + "setting_id": "GFSB51_10", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "eng_plate_temp": [ + "90" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.9", + "0.9" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "1.2", + "1.2" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "90" + ], + "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 ASA-CF @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2DP 0.6 nozzle.json index c6c3132087..a10dd2783f 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2DP 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2DP 0.6 nozzle.json @@ -1,129 +1,56 @@ { - "type": "filament", - "name": "Bambu ASA-CF @BBL H2DP 0.6 nozzle", - "inherits": "Bambu ASA-CF @base", - "from": "system", - "setting_id": "GFSB51_11", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.9", - "0.9" - ], - "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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "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 ASA-CF @BBL H2DP 0.6 nozzle", + "inherits": "Bambu ASA-CF @base", + "from": "system", + "setting_id": "GFSB51_11", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.9", + "0.9" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "1.2", + "1.2" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "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 ASA-CF @BBL H2S.json b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2S.json index 90b0e34558..9700df7ca0 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL H2S.json @@ -1,130 +1,81 @@ { - "type": "filament", - "name": "Bambu ASA-CF @BBL H2S", - "inherits": "Bambu ASA-CF @base", - "from": "system", - "setting_id": "GFSB51_16", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.9", - "0.9" - ], - "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": [ - "0", - "0" - ], - "nozzle_temperature": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "retraction_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 ASA-CF @BBL H2S", + "inherits": "Bambu ASA-CF @base", + "from": "system", + "setting_id": "GFSB51_16", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.9", + "0.9", + "0.9" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "1.2", + "1.2", + "1.2" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275" + ], + "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 ASA-CF @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL P1P 0.6 nozzle.json index 046e09c964..65e12dfc7d 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL P1P 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL P1P 0.6 nozzle.json @@ -1,120 +1,57 @@ { - "type": "filament", - "name": "Bambu ASA-CF @BBL P1P 0.6 nozzle", - "inherits": "Bambu ASA-CF @base", - "from": "system", - "setting_id": "GFSB51_03", - "instantiation": "true", - "filament_flow_ratio": [ - "0.9", - "0.9" - ], - "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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "retraction_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 ASA-CF @BBL P1P 0.6 nozzle", + "inherits": "Bambu ASA-CF @base", + "from": "system", + "setting_id": "GFSB51_03", + "instantiation": "true", + "filament_flow_ratio": [ + "0.89", + "0.89" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "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": [ + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "overhang_fan_speed": [ + "90" + ], + "pre_start_fan_time": [ + "3" + ], + "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/Bambu ASA-CF @BBL P1P.json b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL P1P.json index 565b571732..9f5fb5e0e1 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL P1P.json +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL P1P.json @@ -1,119 +1,56 @@ { - "type": "filament", - "name": "Bambu ASA-CF @BBL P1P", - "inherits": "Bambu ASA-CF @base", - "from": "system", - "setting_id": "GFSB51_02", - "instantiation": "true", - "filament_flow_ratio": [ - "0.9", - "0.9" - ], - "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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "retraction_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 ASA-CF @BBL P1P", + "inherits": "Bambu ASA-CF @base", + "from": "system", + "setting_id": "GFSB51_02", + "instantiation": "true", + "filament_flow_ratio": [ + "0.89", + "0.9" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "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": [ + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "overhang_fan_speed": [ + "90" + ], + "pre_start_fan_time": [ + "3" + ], + "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/Bambu ASA-CF @BBL P2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL P2S 0.4 nozzle.json index d104343ea6..eb7f04ca4e 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL P2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL P2S 0.4 nozzle.json @@ -1,186 +1,76 @@ { - "type": "filament", - "name": "Bambu ASA-CF @BBL P2S 0.4 nozzle", - "inherits": "Bambu ASA-CF @base", - "from": "system", - "setting_id": "GFSB51_08", - "instantiation": "true", - "activate_air_filtration": [ - "0" - ], - "chamber_temperatures": [ - "60" - ], - "eng_plate_temp": [ - "90" - ], - "eng_plate_temp_initial_layer": [ - "90" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.9", - "0.9" - ], - "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" - ], - "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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "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" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu ASA-CF @BBL P2S 0.4 nozzle", + "inherits": "Bambu ASA-CF @base", + "from": "system", + "setting_id": "GFSB51_08", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.9", + "0.9", + "0.9" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "1.2", + "nil", + "1.2" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275" + ], + "overhang_fan_speed": [ + "100" + ], + "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" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL P2S 0.6 nozzle.json index b12aa7333d..49b0a84c3c 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL P2S 0.6 nozzle.json @@ -1,187 +1,77 @@ { - "type": "filament", - "name": "Bambu ASA-CF @BBL P2S 0.6 nozzle", - "inherits": "Bambu ASA-CF @base", - "from": "system", - "setting_id": "GFSB51_09", - "instantiation": "true", - "activate_air_filtration": [ - "0" - ], - "chamber_temperatures": [ - "60" - ], - "eng_plate_temp": [ - "90" - ], - "eng_plate_temp_initial_layer": [ - "90" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.9", - "0.9" - ], - "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" - ], - "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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "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.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu ASA-CF @BBL P2S 0.6 nozzle", + "inherits": "Bambu ASA-CF @base", + "from": "system", + "setting_id": "GFSB51_09", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.9", + "0.9", + "0.9" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "1.2", + "nil", + "1.2" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "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/Bambu ASA-CF @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL X1C 0.6 nozzle.json index b534868de7..3c55f436ea 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL X1C 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL X1C 0.6 nozzle.json @@ -1,126 +1,63 @@ { - "type": "filament", - "name": "Bambu ASA-CF @BBL X1C 0.6 nozzle", - "inherits": "Bambu ASA-CF @base", - "from": "system", - "setting_id": "GFSB51_01", - "instantiation": "true", - "filament_flow_ratio": [ - "0.9", - "0.9" - ], - "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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "retraction_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 X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu ASA-CF @BBL X1C 0.6 nozzle", + "inherits": "Bambu ASA-CF @base", + "from": "system", + "setting_id": "GFSB51_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.89", + "0.9" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "1.2", + "nil" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "overhang_fan_speed": [ + "90" + ], + "pre_start_fan_time": [ + "3" + ], + "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 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 ASA-CF @BBL X1C.json b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL X1C.json index 89f32a24fd..0057078bcb 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL X1C.json @@ -1,122 +1,59 @@ { - "type": "filament", - "name": "Bambu ASA-CF @BBL X1C", - "inherits": "Bambu ASA-CF @base", - "from": "system", - "setting_id": "GFSB51_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.9", - "0.9" - ], - "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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "retraction_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 ASA-CF @BBL X1C", + "inherits": "Bambu ASA-CF @base", + "from": "system", + "setting_id": "GFSB51_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.89", + "0.9" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "1.2", + "nil" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "overhang_fan_speed": [ + "90" + ], + "pre_start_fan_time": [ + "3" + ], + "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 ASA-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL X2D 0.4 nozzle.json index 1f43c3e688..086b33b549 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL X2D 0.4 nozzle.json @@ -1,269 +1,98 @@ { - "type": "filament", - "name": "Bambu ASA-CF @BBL X2D 0.4 nozzle", - "inherits": "Bambu ASA-CF @base", - "from": "system", - "setting_id": "GFSB51_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" - ], - "chamber_temperatures": [ - "60" - ], - "filament_extruder_compatibility": [ - "16" - ], - "filament_flow_ratio": [ - "0.9", - "0.9", - "0.9", - "0.9" - ], - "filament_max_volumetric_speed": [ - "18", - "18", - "18", - "18" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "275" - ], - "nozzle_temperature": [ - "275", - "275", - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275", - "275", - "275" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu ASA-CF @BBL X2D 0.4 nozzle", + "inherits": "Bambu ASA-CF @base", + "from": "system", + "setting_id": "GFSB51_12", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.9", + "0.9", + "0.9", + "0.9", + "0.9", + "0.9" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "1.2", + "nil", + "1.2", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "275" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "275", + "275", + "275", + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275", + "275", + "275", + "275" + ], + "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 ASA-CF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL X2D.json index 9352ed31ad..c221226aa0 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-CF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @BBL X2D.json @@ -1,270 +1,99 @@ { - "type": "filament", - "name": "Bambu ASA-CF @BBL X2D", - "inherits": "Bambu ASA-CF @base", - "from": "system", - "setting_id": "GFSB51_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_extruder_compatibility": [ - "16" - ], - "filament_flow_ratio": [ - "0.9", - "0.9", - "0.9", - "0.9" - ], - "filament_max_volumetric_speed": [ - "18", - "18", - "18", - "18" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "275" - ], - "nozzle_temperature": [ - "275", - "275", - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275", - "275", - "275" - ], - "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 ASA-CF @BBL X2D", + "inherits": "Bambu ASA-CF @base", + "from": "system", + "setting_id": "GFSB51_13", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.9", + "0.9", + "0.9", + "0.9", + "0.9", + "0.9" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "1.2", + "nil", + "1.2", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "275" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "275", + "275", + "275", + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275", + "275", + "275", + "275" + ], + "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 ASA-CF @base.json b/resources/profiles/BBL/filament/Bambu ASA-CF @base.json index bf957889b6..210bdbf04a 100644 --- a/resources/profiles/BBL/filament/Bambu ASA-CF @base.json +++ b/resources/profiles/BBL/filament/Bambu ASA-CF @base.json @@ -1,68 +1,68 @@ { - "type": "filament", - "name": "Bambu ASA-CF @base", - "inherits": "fdm_filament_asa", - "from": "system", - "filament_id": "OF0wBGNx", - "instantiation": "false", - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_max_speed": [ - "25" - ], - "filament_cost": [ - "36.99" - ], - "filament_density": [ - "1.02" - ], - "filament_flow_ratio": [ - "0.9" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_type": [ - "ASA-CF" - ], - "filament_vendor": [ - "Bambu Lab" - ], + "type": "filament", + "name": "Bambu ASA-CF @base", + "inherits": "fdm_filament_asa", + "from": "system", + "filament_id": "OF0wBGNx", + "instantiation": "false", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "25" + ], + "filament_cost": [ + "33.99" + ], + "filament_density": [ + "1.02" + ], "filament_dev_drying_cooling_temperature": [ "95" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "impact_strength_z": [ - "9.4" - ], - "nozzle_temperature": [ - "275" - ], - "nozzle_temperature_initial_layer": [ - "275" - ], - "nozzle_temperature_range_low": [ - "250" - ], - "slow_down_layer_time": [ - "12" - ], - "temperature_vitrification": [ - "108" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ] -} + "filament_flow_ratio": [ + "0.9" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_type": [ + "ASA-CF" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "impact_strength_z": [ + "9.4" + ], + "nozzle_temperature": [ + "275" + ], + "nozzle_temperature_initial_layer": [ + "275" + ], + "nozzle_temperature_range_low": [ + "250" + ], + "slow_down_layer_time": [ + "12" + ], + "temperature_vitrification": [ + "108" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PA-CF @BBL A1.json b/resources/profiles/BBL/filament/Bambu PA-CF @BBL A1.json index 6e1281bb2f..7f19de7665 100644 --- a/resources/profiles/BBL/filament/Bambu PA-CF @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PA-CF @BBL A1.json @@ -1,31 +1,34 @@ { - "type": "filament", - "name": "Bambu PA-CF @BBL A1", - "inherits": "Bambu PA-CF @base", - "from": "system", - "setting_id": "GFSN03_01", - "instantiation": "true", - "fan_cooling_layer_time": [ - "5" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "10" - ], - "full_fan_speed_layer": [ - "2" - ], - "nozzle_temperature": [ - "290" - ], - "nozzle_temperature_initial_layer": [ - "290" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PA-CF @BBL A1", + "inherits": "Bambu PA-CF @base", + "from": "system", + "setting_id": "GFSN03_01", + "instantiation": "true", + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "full_fan_speed_layer": [ + "2" + ], + "additional_fan_full_speed_layer": [ + "2" + ], + "nozzle_temperature": [ + "290" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "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 PA-CF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PA-CF @BBL H2C 0.4 nozzle.json index 4cc1673410..ffc578ba28 100644 --- a/resources/profiles/BBL/filament/Bambu PA-CF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PA-CF @BBL H2C 0.4 nozzle.json @@ -1,171 +1,88 @@ { - "type": "filament", - "name": "Bambu PA-CF @BBL H2C 0.4 nozzle", - "inherits": "Bambu PA-CF @base", - "from": "system", - "setting_id": "GFSN03_07", - "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_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" - ], - "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 PA-CF @BBL H2C 0.4 nozzle", + "inherits": "Bambu PA-CF @base", + "from": "system", + "setting_id": "GFSN03_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": [ + "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" + ], + "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 PA-CF @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PA-CF @BBL H2C.json index 3182fc7db5..446a08eff1 100644 --- a/resources/profiles/BBL/filament/Bambu PA-CF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PA-CF @BBL H2C.json @@ -1,172 +1,89 @@ { - "type": "filament", - "name": "Bambu PA-CF @BBL H2C", - "inherits": "Bambu PA-CF @base", - "from": "system", - "setting_id": "GFSN03_08", - "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_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" - ], - "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 PA-CF @BBL H2C", + "inherits": "Bambu PA-CF @base", + "from": "system", + "setting_id": "GFSN03_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": [ + "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" + ], + "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 PA-CF @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PA-CF @BBL H2D.json index 00a6b5f08e..cee8d53842 100644 --- a/resources/profiles/BBL/filament/Bambu PA-CF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PA-CF @BBL H2D.json @@ -1,130 +1,66 @@ { - "type": "filament", - "name": "Bambu PA-CF @BBL H2D", - "inherits": "Bambu PA-CF @base", - "from": "system", - "setting_id": "GFSN03_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_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive 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 PA-CF @BBL H2D", + "inherits": "Bambu PA-CF @base", + "from": "system", + "setting_id": "GFSN03_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": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "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 PA-CF @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PA-CF @BBL H2DP.json index 9dc3c985b2..760fc62815 100644 --- a/resources/profiles/BBL/filament/Bambu PA-CF @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PA-CF @BBL H2DP.json @@ -1,130 +1,53 @@ { - "type": "filament", - "name": "Bambu PA-CF @BBL H2DP", - "inherits": "Bambu PA-CF @base", - "from": "system", - "setting_id": "GFSN03_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_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive 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 PA-CF @BBL H2DP", + "inherits": "Bambu PA-CF @base", + "from": "system", + "setting_id": "GFSN03_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_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 PA-CF @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PA-CF @BBL H2S.json index e8db9dabc1..b1a9ff5a1b 100644 --- a/resources/profiles/BBL/filament/Bambu PA-CF @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PA-CF @BBL H2S.json @@ -1,142 +1,91 @@ { - "type": "filament", - "name": "Bambu PA-CF @BBL H2S", - "inherits": "Bambu PA-CF @base", - "from": "system", - "setting_id": "GFSN03_09", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_cooling_layer_time": [ - "5" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "10" - ], - "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" - ], - "full_fan_speed_layer": [ - "2" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_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 PA-CF @BBL H2S", + "inherits": "Bambu PA-CF @base", + "from": "system", + "setting_id": "GFSN03_09", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "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" + ], + "full_fan_speed_layer": [ + "2" + ], + "additional_fan_full_speed_layer": [ + "2" + ], + "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": [ + "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 PA-CF @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PA-CF @BBL P2S.json index a5321a628a..5459a2e484 100644 --- a/resources/profiles/BBL/filament/Bambu PA-CF @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PA-CF @BBL P2S.json @@ -1,182 +1,85 @@ { - "type": "filament", - "name": "Bambu PA-CF @BBL P2S", - "inherits": "Bambu PA-CF @base", - "from": "system", - "setting_id": "GFSN03_03", - "instantiation": "true", - "activate_air_filtration": [ - "0" - ], - "chamber_temperatures": [ - "60" - ], - "fan_cooling_layer_time": [ - "5" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "10" - ], - "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" - ], - "full_fan_speed_layer": [ - "2" - ], - "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 PA-CF @BBL P2S", + "inherits": "Bambu PA-CF @base", + "from": "system", + "setting_id": "GFSN03_03", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "60" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "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" + ], + "full_fan_speed_layer": [ + "2" + ], + "additional_fan_full_speed_layer": [ + "2" + ], + "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 PA-CF @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PA-CF @BBL X1C.json index e3ebff6b9e..52af58d8ba 100644 --- a/resources/profiles/BBL/filament/Bambu PA-CF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PA-CF @BBL X1C.json @@ -1,139 +1,69 @@ { - "type": "filament", - "name": "Bambu PA-CF @BBL X1C", - "inherits": "Bambu PA-CF @base", - "from": "system", - "setting_id": "GFSN00", - "instantiation": "true", - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "10" - ], - "fan_cooling_layer_time": [ - "5" - ], - "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_initial_layer": [ - "290", - "290" - ], - "nozzle_temperature": [ - "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 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 PA-CF @BBL X1C", + "inherits": "Bambu PA-CF @base", + "from": "system", + "setting_id": "GFSN00", + "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 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 PA-CF @BBL X1E.json b/resources/profiles/BBL/filament/Bambu PA-CF @BBL X1E.json index 9539b0ba39..b12f9f014e 100644 --- a/resources/profiles/BBL/filament/Bambu PA-CF @BBL X1E.json +++ b/resources/profiles/BBL/filament/Bambu PA-CF @BBL X1E.json @@ -1,136 +1,66 @@ { - "type": "filament", - "name": "Bambu PA-CF @BBL X1E", - "inherits": "Bambu PA-CF @base", - "from": "system", - "setting_id": "GFSN03_00", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_cooling_layer_time": [ - "5" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "10" - ], - "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" - ], - "full_fan_speed_layer": [ - "2" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_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": "Bambu PA-CF @BBL X1E", + "inherits": "Bambu PA-CF @base", + "from": "system", + "setting_id": "GFSN03_00", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "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 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 PA-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PA-CF @BBL X2D 0.4 nozzle.json index 57bfcb4d75..4cd5698e7f 100644 --- a/resources/profiles/BBL/filament/Bambu PA-CF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PA-CF @BBL X2D 0.4 nozzle.json @@ -1,281 +1,102 @@ { - "type": "filament", - "name": "Bambu PA-CF @BBL X2D 0.4 nozzle", - "inherits": "Bambu PA-CF @base", - "from": "system", - "setting_id": "GFSN03_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" - ], - "additional_fan_full_speed_layer": [ - "2" - ], - "chamber_temperatures": [ - "60" - ], - "fan_cooling_layer_time": [ - "5" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96", - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "290" - ], - "full_fan_speed_layer": [ - "2" - ], - "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 PA-CF @BBL X2D 0.4 nozzle", + "inherits": "Bambu PA-CF @base", + "from": "system", + "setting_id": "GFSN03_05", + "instantiation": "true", + "additional_fan_full_speed_layer": [ + "2" + ], + "chamber_temperatures": [ + "60" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "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": [ + "8", + "8", + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "full_fan_speed_layer": [ + "2" + ], + "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 PA-CF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PA-CF @BBL X2D.json index c9f8772c79..384d2e4f3b 100644 --- a/resources/profiles/BBL/filament/Bambu PA-CF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PA-CF @BBL X2D.json @@ -1,282 +1,103 @@ { - "type": "filament", - "name": "Bambu PA-CF @BBL X2D", - "inherits": "Bambu PA-CF @base", - "from": "system", - "setting_id": "GFSN03_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" - ], - "additional_fan_full_speed_layer": [ - "2" - ], - "chamber_temperatures": [ - "60" - ], - "fan_cooling_layer_time": [ - "5" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96", - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "290" - ], - "full_fan_speed_layer": [ - "2" - ], - "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 PA-CF @BBL X2D", + "inherits": "Bambu PA-CF @base", + "from": "system", + "setting_id": "GFSN03_06", + "instantiation": "true", + "additional_fan_full_speed_layer": [ + "2" + ], + "chamber_temperatures": [ + "60" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "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": [ + "8", + "8", + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "full_fan_speed_layer": [ + "2" + ], + "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 PA-CF @base.json b/resources/profiles/BBL/filament/Bambu PA-CF @base.json index 47e1cc6ae1..56438fdc74 100644 --- a/resources/profiles/BBL/filament/Bambu PA-CF @base.json +++ b/resources/profiles/BBL/filament/Bambu PA-CF @base.json @@ -1,42 +1,42 @@ { - "type": "filament", - "name": "Bambu PA-CF @base", - "inherits": "fdm_filament_pa", - "from": "system", - "filament_id": "OFFNYwWR", - "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": [ - "84.99" - ], - "filament_density": [ - "1.09" - ], - "filament_flow_ratio": [ - "0.96" - ], - "filament_type": [ - "PA-CF" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "impact_strength_z": [ - "5.7" - ], - "nozzle_temperature": [ - "280" - ], - "nozzle_temperature_initial_layer": [ - "280" - ], - "overhang_fan_speed": [ - "40" - ], - "overhang_fan_threshold": [ - "0%" - ], - "temperature_vitrification": [ - "170" - ] -} + "type": "filament", + "name": "Bambu PA-CF @base", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "OFFNYwWR", + "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": [ + "84.99" + ], + "filament_density": [ + "1.09" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_type": [ + "PA-CF" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "5.7" + ], + "nozzle_temperature": [ + "280" + ], + "nozzle_temperature_initial_layer": [ + "280" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "temperature_vitrification": [ + "170" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PA6-CF @BBL A1.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL A1.json index 6a6b84d57d..c8ad4d3ae3 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-CF @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL A1.json @@ -1,13 +1,13 @@ { - "type": "filament", - "name": "Bambu PA6-CF @BBL A1", - "inherits": "Bambu PA6-CF @base", - "from": "system", - "setting_id": "GFSN05_00", - "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 PA6-CF @BBL A1", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_00", + "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 PA6-CF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2C 0.4 nozzle.json index 55082c4c58..d5f0e48284 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2C 0.4 nozzle.json @@ -1,198 +1,115 @@ { - "type": "filament", - "name": "Bambu PA6-CF @BBL H2C 0.4 nozzle", - "inherits": "Bambu PA6-CF @base", - "from": "system", - "setting_id": "GFSN05_08", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "counter_coef_2": [ - "-0.0016" - ], - "counter_coef_3": [ - "0.0031" - ], - "counter_limit_max": [ - "0.0031" - ], - "counter_limit_min": [ - "-0.038" - ], - "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": [ - "235", - "235" - ], - "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.0051" - ], - "hole_coef_3": [ - "0.2194" - ], - "hole_limit_max": [ - "0.2194" - ], - "hole_limit_min": [ - "0.092" - ], - "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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "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 PA6-CF @BBL H2C 0.4 nozzle", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_08", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0016" + ], + "counter_coef_3": [ + "0.0031" + ], + "counter_limit_min": [ + "-0.038" + ], + "counter_limit_max": [ + "0.0031" + ], + "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_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "235", + "235", + "235" + ], + "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.0051" + ], + "hole_coef_3": [ + "0.2194" + ], + "hole_limit_min": [ + "0.092" + ], + "hole_limit_max": [ + "0.2194" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275" + ], + "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" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2C 0.8 nozzle.json new file mode 100644 index 0000000000..298e08ad9e --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2C 0.8 nozzle.json @@ -0,0 +1,117 @@ +{ + "type": "filament", + "name": "Bambu PA6-CF @BBL H2C 0.8 nozzle", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_18", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0016" + ], + "counter_coef_3": [ + "0.0031" + ], + "counter_limit_max": [ + "0.0031" + ], + "counter_limit_min": [ + "-0.038" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_pre_cooling_temperature_nc": [ + "235", + "235" + ], + "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.0051" + ], + "hole_coef_3": [ + "0.2194" + ], + "hole_limit_max": [ + "0.2194" + ], + "hole_limit_min": [ + "0.092" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "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": [ + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2C.json index 52ef42a778..efe4561e5b 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2C.json @@ -1,199 +1,115 @@ { - "type": "filament", - "name": "Bambu PA6-CF @BBL H2C", - "inherits": "Bambu PA6-CF @base", - "from": "system", - "setting_id": "GFSN05_09", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "counter_coef_2": [ - "-0.0016" - ], - "counter_coef_3": [ - "0.0031" - ], - "counter_limit_max": [ - "0.0031" - ], - "counter_limit_min": [ - "-0.038" - ], - "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": [ - "235", - "235" - ], - "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.0051" - ], - "hole_coef_3": [ - "0.2194" - ], - "hole_limit_max": [ - "0.2194" - ], - "hole_limit_min": [ - "0.092" - ], - "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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "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 PA6-CF @BBL H2C", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_09", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0016" + ], + "counter_coef_3": [ + "0.0031" + ], + "counter_limit_max": [ + "0.0031" + ], + "counter_limit_min": [ + "-0.038" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "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": [ + "235", + "235", + "235" + ], + "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.0051" + ], + "hole_coef_3": [ + "0.2194" + ], + "hole_limit_max": [ + "0.2194" + ], + "hole_limit_min": [ + "0.092" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "150" + ], + "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 PA6-CF @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2D 0.6 nozzle.json new file mode 100644 index 0000000000..81af096616 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2D 0.6 nozzle.json @@ -0,0 +1,84 @@ +{ + "type": "filament", + "name": "Bambu PA6-CF @BBL H2D 0.6 nozzle", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_19", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.00565" + ], + "counter_coef_3": [ + "-0.0202" + ], + "counter_limit_max": [ + "0.03" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275" + ], + "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 PA6-CF @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2D 0.8 nozzle.json new file mode 100644 index 0000000000..6734c692af --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2D 0.8 nozzle.json @@ -0,0 +1,76 @@ +{ + "type": "filament", + "name": "Bambu PA6-CF @BBL H2D 0.8 nozzle", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_20", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.00565" + ], + "counter_coef_3": [ + "-0.0202" + ], + "counter_limit_max": [ + "0.03" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "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 PA6-CF @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2D.json index 5c42b34f22..7af66f7591 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2D.json @@ -1,139 +1,88 @@ { - "type": "filament", - "name": "Bambu PA6-CF @BBL H2D", - "inherits": "Bambu PA6-CF @base", - "from": "system", - "setting_id": "GFSN05_04", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "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": [ - "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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "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 PA6-CF @BBL H2D", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_04", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0016" + ], + "counter_coef_3": [ + "0.0031" + ], + "counter_limit_max": [ + "0.0031" + ], + "counter_limit_min": [ + "-0.038" + ], + "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_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0051" + ], + "hole_coef_3": [ + "0.2194" + ], + "hole_limit_max": [ + "0.2194" + ], + "hole_limit_min": [ + "0.092" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275" + ], + "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 PA6-CF @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2DP 0.6 nozzle.json new file mode 100644 index 0000000000..4c103b0344 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2DP 0.6 nozzle.json @@ -0,0 +1,78 @@ +{ + "type": "filament", + "name": "Bambu PA6-CF @BBL H2DP 0.6 nozzle", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_21", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.00565" + ], + "counter_coef_3": [ + "-0.0202" + ], + "counter_limit_max": [ + "0.03" + ], + "filament_change_length": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "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 PA6-CF @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2DP 0.8 nozzle.json new file mode 100644 index 0000000000..1109cf18b9 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2DP 0.8 nozzle.json @@ -0,0 +1,78 @@ +{ + "type": "filament", + "name": "Bambu PA6-CF @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_22", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.00565" + ], + "counter_coef_3": [ + "-0.0202" + ], + "counter_limit_max": [ + "0.03" + ], + "filament_change_length": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "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 PA6-CF @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2DP.json index 8eddde5255..3296ee17fc 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2DP.json @@ -1,139 +1,60 @@ { - "type": "filament", - "name": "Bambu PA6-CF @BBL H2DP", - "inherits": "Bambu PA6-CF @base", - "from": "system", - "setting_id": "GFSN05_06", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "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": [ - "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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "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 PA6-CF @BBL H2DP", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_06", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "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": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "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 PA6-CF @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2S 0.6 nozzle.json new file mode 100644 index 0000000000..7865bb6c73 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2S 0.6 nozzle.json @@ -0,0 +1,110 @@ +{ + "type": "filament", + "name": "Bambu PA6-CF @BBL H2S 0.6 nozzle", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_23", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0016" + ], + "counter_coef_3": [ + "0.0031" + ], + "counter_limit_max": [ + "0.0031" + ], + "counter_limit_min": [ + "-0.038" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "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" + ], + "hole_coef_2": [ + "-0.0051" + ], + "hole_coef_3": [ + "0.2194" + ], + "hole_limit_max": [ + "0.2194" + ], + "hole_limit_min": [ + "0.092" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275" + ], + "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 PA6-CF @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2S 0.8 nozzle.json new file mode 100644 index 0000000000..08ad4903ca --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2S 0.8 nozzle.json @@ -0,0 +1,101 @@ +{ + "type": "filament", + "name": "Bambu PA6-CF @BBL H2S 0.8 nozzle", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_24", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0016" + ], + "counter_coef_3": [ + "0.0031" + ], + "counter_limit_max": [ + "0.0031" + ], + "counter_limit_min": [ + "-0.038" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hole_coef_2": [ + "-0.0051" + ], + "hole_coef_3": [ + "0.2194" + ], + "hole_limit_max": [ + "0.2194" + ], + "hole_limit_min": [ + "0.092" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "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 PA6-CF @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2S.json index 02c509c54b..0b4d91befa 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2S.json @@ -1,130 +1,98 @@ { - "type": "filament", - "name": "Bambu PA6-CF @BBL H2S", - "inherits": "Bambu PA6-CF @base", - "from": "system", - "setting_id": "GFSN05_10", - "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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "retraction_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 PA6-CF @BBL H2S", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_10", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0016" + ], + "counter_coef_3": [ + "0.0031" + ], + "counter_limit_max": [ + "0.0031" + ], + "counter_limit_min": [ + "-0.038" + ], + "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_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0051" + ], + "hole_coef_3": [ + "0.2194" + ], + "hole_limit_max": [ + "0.2194" + ], + "hole_limit_min": [ + "0.092" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275" + ], + "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 PA6-CF @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL P2S 0.6 nozzle.json new file mode 100644 index 0000000000..1f5d9d345e --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL P2S 0.6 nozzle.json @@ -0,0 +1,104 @@ +{ + "type": "filament", + "name": "Bambu PA6-CF @BBL P2S 0.6 nozzle", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_25", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0016" + ], + "counter_coef_3": [ + "0.0031" + ], + "counter_limit_max": [ + "0.0031" + ], + "counter_limit_min": [ + "-0.038" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "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.2194" + ], + "hole_limit_max": [ + "0.2194" + ], + "hole_limit_min": [ + "0.092" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275" + ], + "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 PA6-CF @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL P2S 0.8 nozzle.json new file mode 100644 index 0000000000..3c469c04ec --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL P2S 0.8 nozzle.json @@ -0,0 +1,95 @@ +{ + "type": "filament", + "name": "Bambu PA6-CF @BBL P2S 0.8 nozzle", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_26", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0016" + ], + "counter_coef_3": [ + "0.0031" + ], + "counter_limit_max": [ + "0.0031" + ], + "counter_limit_min": [ + "-0.038" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hole_coef_2": [ + "-0.0051" + ], + "hole_coef_3": [ + "0.2194" + ], + "hole_limit_max": [ + "0.2194" + ], + "hole_limit_min": [ + "0.092" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "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 PA6-CF @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL P2S.json index 34b1c150dd..8fe541f028 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-CF @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL P2S.json @@ -1,170 +1,92 @@ { - "type": "filament", - "name": "Bambu PA6-CF @BBL P2S", - "inherits": "Bambu PA6-CF @base", - "from": "system", - "setting_id": "GFSN05_05", - "instantiation": "true", - "activate_air_filtration": [ - "0" - ], - "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_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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "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 PA6-CF @BBL P2S", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_05", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0016" + ], + "counter_coef_3": [ + "0.0031" + ], + "counter_limit_max": [ + "0.0031" + ], + "counter_limit_min": [ + "-0.038" + ], + "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.2194" + ], + "hole_limit_max": [ + "0.2194" + ], + "hole_limit_min": [ + "0.092" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275" + ], + "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 PA6-CF @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X1C 0.6 nozzle.json new file mode 100644 index 0000000000..55fc6dc7fe --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X1C 0.6 nozzle.json @@ -0,0 +1,59 @@ +{ + "type": "filament", + "name": "Bambu PA6-CF @BBL X1C 0.6 nozzle", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_13", + "instantiation": "true", + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "10" + ], + "filament_retraction_length": [ + "nil", + "0.6" + ], + "filament_z_hop": [ + "nil", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "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 PA6-CF @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X1C.json index fea98c0cd9..a3bd80d4ad 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X1C.json @@ -1,130 +1,59 @@ { - "type": "filament", - "name": "Bambu PA6-CF @BBL X1C", - "inherits": "Bambu PA6-CF @base", - "from": "system", - "setting_id": "GFSN05_02", - "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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "retraction_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.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PA6-CF @BBL X1C", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_02", + "instantiation": "true", + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "10" + ], + "filament_retraction_length": [ + "nil", + "0.8" + ], + "filament_z_hop": [ + "nil", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "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 PA6-CF @BBL X1E.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X1E.json index 221461bf4d..7dc61e0a97 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X1E.json +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X1E.json @@ -1,124 +1,51 @@ { - "type": "filament", - "name": "Bambu PA6-CF @BBL X1E", - "inherits": "Bambu PA6-CF @base", - "from": "system", - "setting_id": "GFSN05_03", - "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": [ - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275" - ], - "retraction_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.4 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PA6-CF @BBL X1E", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_03", + "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": [ + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X2D 0.4 nozzle.json index 0d4b65e724..2f8844aac0 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X2D 0.4 nozzle.json @@ -1,302 +1,147 @@ { - "type": "filament", - "name": "Bambu PA6-CF @BBL X2D 0.4 nozzle", - "inherits": "Bambu PA6-CF @base", - "from": "system", - "setting_id": "GFSN05_01", - "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", - "1", - "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": [ - "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.0016" - ], - "counter_coef_3": [ - "0.0031" - ], - "counter_limit_max": [ - "0.0031" - ], - "counter_limit_min": [ - "-0.038" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "20" - ], - "filament_extruder_compatibility": [ - "16" - ], - "filament_flow_ratio": [ - "0.96", - "0.96", - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "275" - ], - "hole_coef_2": [ - "-0.0051" - ], - "hole_coef_3": [ - "0.2194" - ], - "hole_limit_max": [ - "0.2194" - ], - "hole_limit_min": [ - "0.092" - ], - "nozzle_temperature": [ - "275", - "275", - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275", - "275", - "275" - ], - "overhang_fan_speed": [ - "55" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PA6-CF @BBL X2D 0.4 nozzle", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_01", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0016" + ], + "counter_coef_3": [ + "0.0031" + ], + "counter_limit_max": [ + "0.0031" + ], + "counter_limit_min": [ + "-0.038" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "16" + ], + "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_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "1", + "1", + "1", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "275" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "hole_coef_2": [ + "-0.0051" + ], + "hole_coef_3": [ + "0.2194" + ], + "hole_limit_max": [ + "0.2194" + ], + "hole_limit_min": [ + "0.092" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "275", + "275", + "275", + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275", + "275", + "275", + "275" + ], + "overhang_fan_speed": [ + "55" + ], + "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 PA6-CF @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..facf99db42 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X2D 0.8 nozzle.json @@ -0,0 +1,134 @@ +{ + "type": "filament", + "name": "Bambu PA6-CF @BBL X2D 0.8 nozzle", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_27", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0016" + ], + "counter_coef_3": [ + "0.0031" + ], + "counter_limit_max": [ + "0.0031" + ], + "counter_limit_min": [ + "-0.038" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_flush_temp_fast": [ + "0", + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "1", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "275" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "hole_coef_2": [ + "-0.0051" + ], + "hole_coef_3": [ + "0.2194" + ], + "hole_limit_max": [ + "0.2194" + ], + "hole_limit_min": [ + "0.092" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "275", + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275", + "275" + ], + "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 PA6-CF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X2D.json index 133ef2ee2d..ac8ddec3e2 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @BBL X2D.json @@ -1,294 +1,138 @@ { - "type": "filament", - "name": "Bambu PA6-CF @BBL X2D", - "inherits": "Bambu PA6-CF @base", - "from": "system", - "setting_id": "GFSN05_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": [ - "1", - "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": [ - "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.0016" - ], - "counter_coef_3": [ - "0.0031" - ], - "counter_limit_max": [ - "0.0031" - ], - "counter_limit_min": [ - "-0.038" - ], - "filament_extruder_compatibility": [ - "16" - ], - "filament_flow_ratio": [ - "0.96", - "0.96", - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "275" - ], - "hole_coef_2": [ - "-0.0051" - ], - "hole_coef_3": [ - "0.2194" - ], - "hole_limit_max": [ - "0.2194" - ], - "hole_limit_min": [ - "0.092" - ], - "nozzle_temperature": [ - "275", - "275", - "275", - "275" - ], - "nozzle_temperature_initial_layer": [ - "275", - "275", - "275", - "275" - ], - "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 PA6-CF @BBL X2D", + "inherits": "Bambu PA6-CF @base", + "from": "system", + "setting_id": "GFSN05_07", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0016" + ], + "counter_coef_3": [ + "0.0031" + ], + "counter_limit_max": [ + "0.0031" + ], + "counter_limit_min": [ + "-0.038" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "16" + ], + "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_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "1", + "nil", + "1", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "275" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "hole_coef_2": [ + "-0.0051" + ], + "hole_coef_3": [ + "0.2194" + ], + "hole_limit_max": [ + "0.2194" + ], + "hole_limit_min": [ + "0.092" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "275", + "275", + "275", + "275", + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275", + "275", + "275", + "275", + "275" + ], + "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 PA6-CF @base.json b/resources/profiles/BBL/filament/Bambu PA6-CF @base.json index 0bb143c6ef..a61d8babea 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-CF @base.json +++ b/resources/profiles/BBL/filament/Bambu PA6-CF @base.json @@ -1,51 +1,51 @@ { - "type": "filament", - "name": "Bambu PA6-CF @base", - "inherits": "fdm_filament_pa", - "from": "system", - "filament_id": "OFniMuTN", - "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": [ - "79.99" - ], - "filament_density": [ - "1.10" - ], - "filament_flow_ratio": [ - "0.96" - ], - "filament_type": [ - "PA6-CF" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "impact_strength_z": [ - "15.5" - ], - "nozzle_temperature": [ - "275" - ], - "nozzle_temperature_initial_layer": [ - "275" - ], - "overhang_fan_speed": [ - "40" - ], - "overhang_fan_threshold": [ - "0%" - ], - "temperature_vitrification": [ - "170" - ] -} + "type": "filament", + "name": "Bambu PA6-CF @base", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "OFniMuTN", + "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": [ + "76.99" + ], + "filament_density": [ + "1.10" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_type": [ + "PA6-CF" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "15.5" + ], + "nozzle_temperature": [ + "275" + ], + "nozzle_temperature_initial_layer": [ + "275" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "temperature_vitrification": [ + "170" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PA6-GF @BBL A1.json b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL A1.json index 1ed3942c27..76b7da4332 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-GF @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL A1.json @@ -1,22 +1,22 @@ { - "type": "filament", - "name": "Bambu PA6-GF @BBL A1", - "inherits": "Bambu PA6-GF @base", - "from": "system", - "setting_id": "GFSN08_02", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "10.5" - ], - "nozzle_temperature": [ - "265" - ], - "nozzle_temperature_initial_layer": [ - "265" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PA6-GF @BBL A1", + "inherits": "Bambu PA6-GF @base", + "from": "system", + "setting_id": "GFSN08_02", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "10.5" + ], + "nozzle_temperature": [ + "265" + ], + "nozzle_temperature_initial_layer": [ + "265" + ], + "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 PA6-GF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL H2C 0.4 nozzle.json index 0b1d7c52eb..9b62b86c31 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-GF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL H2C 0.4 nozzle.json @@ -1,174 +1,96 @@ { - "type": "filament", - "name": "Bambu PA6-GF @BBL H2C 0.4 nozzle", - "inherits": "Bambu PA6-GF @base", - "from": "system", - "setting_id": "GFSN08_08", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "10.5", - "10.5" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "225", - "225" - ], - "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": [ - "265", - "265" - ], - "nozzle_temperature_initial_layer": [ - "265", - "265" - ], - "retraction_distances_when_ec": [ - "4", - "4" - ], - "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 PA6-GF @BBL H2C 0.4 nozzle", + "inherits": "Bambu PA6-GF @base", + "from": "system", + "setting_id": "GFSN08_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": [ + "10.5", + "10.5", + "10.5" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "225", + "225", + "225" + ], + "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": [ + "265", + "265", + "265" + ], + "nozzle_temperature_initial_layer": [ + "265", + "265", + "265" + ], + "retraction_distances_when_ec": [ + "4", + "4", + "4" + ], + "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 PA6-GF @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL H2C.json index 749ace320a..c998ace674 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-GF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL H2C.json @@ -1,175 +1,97 @@ { - "type": "filament", - "name": "Bambu PA6-GF @BBL H2C", - "inherits": "Bambu PA6-GF @base", - "from": "system", - "setting_id": "GFSN08_09", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "10.5", - "10.5" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "225", - "225" - ], - "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": [ - "265", - "265" - ], - "nozzle_temperature_initial_layer": [ - "265", - "265" - ], - "retraction_distances_when_ec": [ - "4", - "4" - ], - "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 PA6-GF @BBL H2C", + "inherits": "Bambu PA6-GF @base", + "from": "system", + "setting_id": "GFSN08_09", + "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": [ + "10.5", + "10.5", + "10.5" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "225", + "225", + "225" + ], + "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": [ + "265", + "265", + "265" + ], + "nozzle_temperature_initial_layer": [ + "265", + "265", + "265" + ], + "retraction_distances_when_ec": [ + "4", + "4", + "4" + ], + "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 PA6-GF @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL H2D.json index d18edfcde0..8f41c7c44c 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-GF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL H2D.json @@ -1,130 +1,71 @@ { - "type": "filament", - "name": "Bambu PA6-GF @BBL H2D", - "inherits": "Bambu PA6-GF @base", - "from": "system", - "setting_id": "GFSN08_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": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive 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": [ - "265", - "265" - ], - "nozzle_temperature_initial_layer": [ - "265", - "265" - ], - "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 PA6-GF @BBL H2D", + "inherits": "Bambu PA6-GF @base", + "from": "system", + "setting_id": "GFSN08_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": [ + "10.5", + "10.5", + "10.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "265", + "265", + "265" + ], + "nozzle_temperature_initial_layer": [ + "265", + "265", + "265" + ], + "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 PA6-GF @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL H2DP.json index 5a19b9d6d7..1b07db3f0f 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-GF @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL H2DP.json @@ -1,130 +1,57 @@ { - "type": "filament", - "name": "Bambu PA6-GF @BBL H2DP", - "inherits": "Bambu PA6-GF @base", - "from": "system", - "setting_id": "GFSN08_05", - "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": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive 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": [ - "265", - "265" - ], - "nozzle_temperature_initial_layer": [ - "265", - "265" - ], - "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 PA6-GF @BBL H2DP", + "inherits": "Bambu PA6-GF @base", + "from": "system", + "setting_id": "GFSN08_05", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "10.5", + "10.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "265", + "265" + ], + "nozzle_temperature_initial_layer": [ + "265", + "265" + ], + "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 PA6-GF @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL H2S.json index d0886c7a65..31f74a0214 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-GF @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL H2S.json @@ -1,130 +1,76 @@ { - "type": "filament", - "name": "Bambu PA6-GF @BBL H2S", - "inherits": "Bambu PA6-GF @base", - "from": "system", - "setting_id": "GFSN08_10", - "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": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "265", - "265" - ], - "nozzle_temperature_initial_layer": [ - "265", - "265" - ], - "retraction_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 PA6-GF @BBL H2S", + "inherits": "Bambu PA6-GF @base", + "from": "system", + "setting_id": "GFSN08_10", + "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": [ + "10.5", + "10.5", + "10.5" + ], + "filament_prime_volume": [ + "30" + ], + "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": [ + "265", + "265", + "265" + ], + "nozzle_temperature_initial_layer": [ + "265", + "265", + "265" + ], + "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 PA6-GF @BBL P1P.json b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL P1P.json index db4e431667..03fbe7dba3 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-GF @BBL P1P.json +++ b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL P1P.json @@ -1,121 +1,48 @@ { - "type": "filament", - "name": "Bambu PA6-GF @BBL P1P", - "inherits": "Bambu PA6-GF @base", - "from": "system", - "setting_id": "GFSN08_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "10.5", - "10.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": [ - "265", - "265" - ], - "nozzle_temperature_initial_layer": [ - "265", - "265" - ], - "retraction_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 PA6-GF @BBL P1P", + "inherits": "Bambu PA6-GF @base", + "from": "system", + "setting_id": "GFSN08_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "10.5", + "10.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "265", + "265" + ], + "nozzle_temperature_initial_layer": [ + "265", + "265" + ], + "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/Bambu PA6-GF @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL P2S.json index 0f45ef0971..88ec94b226 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-GF @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL P2S.json @@ -1,170 +1,70 @@ { - "type": "filament", - "name": "Bambu PA6-GF @BBL P2S", - "inherits": "Bambu PA6-GF @base", - "from": "system", - "setting_id": "GFSN08_04", - "instantiation": "true", - "activate_air_filtration": [ - "0" - ], - "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": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "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": [ - "265", - "265" - ], - "nozzle_temperature_initial_layer": [ - "265", - "265" - ], - "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 PA6-GF @BBL P2S", + "inherits": "Bambu PA6-GF @base", + "from": "system", + "setting_id": "GFSN08_04", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "10.5", + "10.5", + "10.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "265", + "265", + "265" + ], + "nozzle_temperature_initial_layer": [ + "265", + "265", + "265" + ], + "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 PA6-GF @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL X1C.json index 1ae1285e50..4aabf6b9ee 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-GF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL X1C.json @@ -1,133 +1,60 @@ { - "type": "filament", - "name": "Bambu PA6-GF @BBL X1C", - "inherits": "Bambu PA6-GF @base", - "from": "system", - "setting_id": "GFSN08_00", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_max_volumetric_speed": [ - "10.5", - "10.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": [ - "265", - "265" - ], - "nozzle_temperature_initial_layer": [ - "265", - "265" - ], - "retraction_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 PA6-GF @BBL X1C", + "inherits": "Bambu PA6-GF @base", + "from": "system", + "setting_id": "GFSN08_00", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "10.5", + "10.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "265", + "265" + ], + "nozzle_temperature_initial_layer": [ + "265", + "265" + ], + "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 PA6-GF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL X2D 0.4 nozzle.json index 14e7f3ba63..d6d658b84c 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-GF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL X2D 0.4 nozzle.json @@ -1,266 +1,95 @@ { - "type": "filament", - "name": "Bambu PA6-GF @BBL X2D 0.4 nozzle", - "inherits": "Bambu PA6-GF @base", - "from": "system", - "setting_id": "GFSN08_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": [ - "1", - "1", - "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": [ - "10.5", - "10.5", - "10.5", - "10.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "265" - ], - "nozzle_temperature": [ - "265", - "265", - "265", - "265" - ], - "nozzle_temperature_initial_layer": [ - "265", - "265", - "265", - "265" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PA6-GF @BBL X2D 0.4 nozzle", + "inherits": "Bambu PA6-GF @base", + "from": "system", + "setting_id": "GFSN08_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": [ + "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": [ + "1", + "1", + "1", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "265" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "265", + "265", + "265", + "265", + "265", + "265" + ], + "nozzle_temperature_initial_layer": [ + "265", + "265", + "265", + "265", + "265", + "265" + ], + "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 PA6-GF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL X2D.json index 83b90323f8..40283e5149 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-GF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PA6-GF @BBL X2D.json @@ -1,267 +1,96 @@ { - "type": "filament", - "name": "Bambu PA6-GF @BBL X2D", - "inherits": "Bambu PA6-GF @base", - "from": "system", - "setting_id": "GFSN08_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": [ - "1", - "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": [ - "10.5", - "10.5", - "10.5", - "10.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "265" - ], - "nozzle_temperature": [ - "265", - "265", - "265", - "265" - ], - "nozzle_temperature_initial_layer": [ - "265", - "265", - "265", - "265" - ], - "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 PA6-GF @BBL X2D", + "inherits": "Bambu PA6-GF @base", + "from": "system", + "setting_id": "GFSN08_07", + "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": [ + "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": [ + "1", + "nil", + "1", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "265" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "265", + "265", + "265", + "265", + "265", + "265" + ], + "nozzle_temperature_initial_layer": [ + "265", + "265", + "265", + "265", + "265", + "265" + ], + "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 PA6-GF @base.json b/resources/profiles/BBL/filament/Bambu PA6-GF @base.json index 2f9a674e54..b1c0f4db86 100644 --- a/resources/profiles/BBL/filament/Bambu PA6-GF @base.json +++ b/resources/profiles/BBL/filament/Bambu PA6-GF @base.json @@ -1,48 +1,51 @@ { - "type": "filament", - "name": "Bambu PA6-GF @base", - "inherits": "fdm_filament_pa", - "from": "system", - "filament_id": "OFNk8bxk", - "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": [ - "59.99" - ], - "filament_density": [ - "1.14" - ], - "filament_flow_ratio": [ - "0.96" - ], - "filament_type": [ - "PA-GF" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "full_fan_speed_layer": [ - "2" - ], - "impact_strength_z": [ - "4.1" - ], - "overhang_fan_speed": [ - "40" - ], - "overhang_fan_threshold": [ - "0%" - ], - "temperature_vitrification": [ - "180" - ] -} + "type": "filament", + "name": "Bambu PA6-GF @base", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "OFNk8bxk", + "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.", + "additional_fan_full_speed_layer": [ + "2" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "56.99" + ], + "filament_density": [ + "1.14" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_type": [ + "PA-GF" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "full_fan_speed_layer": [ + "2" + ], + "impact_strength_z": [ + "4.1" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "temperature_vitrification": [ + "180" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL A1.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL A1.json index f6a2d95cc5..c925657b6d 100644 --- a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL A1.json @@ -1,13 +1,13 @@ { - "type": "filament", - "name": "Bambu PAHT-CF @BBL A1", - "inherits": "Bambu PAHT-CF @base", - "from": "system", - "setting_id": "GFSN04_00", - "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 PAHT-CF @BBL A1", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_00", + "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 PAHT-CF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2C 0.4 nozzle.json index 98bada741c..8e75eae01b 100644 --- a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2C 0.4 nozzle.json @@ -1,198 +1,115 @@ { - "type": "filament", - "name": "Bambu PAHT-CF @BBL H2C 0.4 nozzle", - "inherits": "Bambu PAHT-CF @base", - "from": "system", - "setting_id": "GFSN04_06", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "counter_coef_2": [ - "0.002" - ], - "counter_coef_3": [ - "-0.055" - ], - "counter_limit_max": [ - "-0.005" - ], - "counter_limit_min": [ - "-0.055" - ], - "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_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.0009" - ], - "hole_coef_3": [ - "0.1686" - ], - "hole_limit_max": [ - "0.19" - ], - "hole_limit_min": [ - "0.1686" - ], - "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 PAHT-CF @BBL H2C 0.4 nozzle", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_06", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.002" + ], + "counter_coef_3": [ + "-0.055" + ], + "counter_limit_min": [ + "-0.055" + ], + "counter_limit_max": [ + "-0.005" + ], + "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_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" + ], + "filament_change_length_nc": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.1686" + ], + "hole_limit_min": [ + "0.1686" + ], + "hole_limit_max": [ + "0.19" + ], + "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" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2C 0.8 nozzle.json new file mode 100644 index 0000000000..f0f47e1320 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2C 0.8 nozzle.json @@ -0,0 +1,117 @@ +{ + "type": "filament", + "name": "Bambu PAHT-CF @BBL H2C 0.8 nozzle", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_20", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.002" + ], + "counter_coef_3": [ + "-0.055" + ], + "counter_limit_max": [ + "-0.005" + ], + "counter_limit_min": [ + "-0.055" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_pre_cooling_temperature_nc": [ + "250", + "250" + ], + "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.0009" + ], + "hole_coef_3": [ + "0.1686" + ], + "hole_limit_max": [ + "0.19" + ], + "hole_limit_min": [ + "0.1686" + ], + "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 H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "temperature_vitrification": [ + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2C.json index fea3dea1a3..01c84f593d 100644 --- a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2C.json @@ -1,199 +1,115 @@ { - "type": "filament", - "name": "Bambu PAHT-CF @BBL H2C", - "inherits": "Bambu PAHT-CF @base", - "from": "system", - "setting_id": "GFSN04_07", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "counter_coef_2": [ - "0.002" - ], - "counter_coef_3": [ - "-0.055" - ], - "counter_limit_max": [ - "-0.005" - ], - "counter_limit_min": [ - "-0.055" - ], - "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_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.0009" - ], - "hole_coef_3": [ - "0.1686" - ], - "hole_limit_max": [ - "0.19" - ], - "hole_limit_min": [ - "0.1686" - ], - "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 PAHT-CF @BBL H2C", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_07", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.002" + ], + "counter_coef_3": [ + "-0.055" + ], + "counter_limit_max": [ + "-0.005" + ], + "counter_limit_min": [ + "-0.055" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "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_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.0009" + ], + "hole_coef_3": [ + "0.1686" + ], + "hole_limit_max": [ + "0.19" + ], + "hole_limit_min": [ + "0.1686" + ], + "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" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2D 0.6 nozzle.json new file mode 100644 index 0000000000..7d675689e5 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2D 0.6 nozzle.json @@ -0,0 +1,84 @@ +{ + "type": "filament", + "name": "Bambu PAHT-CF @BBL H2D 0.6 nozzle", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_21", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.00545" + ], + "counter_coef_3": [ + "-0.0202" + ], + "counter_limit_max": [ + "0.03" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "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.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 PAHT-CF @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2D 0.8 nozzle.json new file mode 100644 index 0000000000..4b70ace7c5 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2D 0.8 nozzle.json @@ -0,0 +1,76 @@ +{ + "type": "filament", + "name": "Bambu PAHT-CF @BBL H2D 0.8 nozzle", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_22", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.00545" + ], + "counter_coef_3": [ + "-0.0202" + ], + "counter_limit_max": [ + "0.03" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "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 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 PAHT-CF @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2D.json index e4bb40d3c6..6639b62a14 100644 --- a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2D.json @@ -1,139 +1,88 @@ { - "type": "filament", - "name": "Bambu PAHT-CF @BBL H2D", - "inherits": "Bambu PAHT-CF @base", - "from": "system", - "setting_id": "GFSN04_01", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "counter_coef_2": [ - "0.00545" - ], - "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": [ - "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": "Bambu PAHT-CF @BBL H2D", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_01", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.002" + ], + "counter_coef_3": [ + "-0.055" + ], + "counter_limit_max": [ + "-0.005" + ], + "counter_limit_min": [ + "-0.055" + ], + "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_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.1686" + ], + "hole_limit_max": [ + "0.19" + ], + "hole_limit_min": [ + "0.1686" + ], + "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" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2DP 0.6 nozzle.json new file mode 100644 index 0000000000..88e3ea08c7 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2DP 0.6 nozzle.json @@ -0,0 +1,78 @@ +{ + "type": "filament", + "name": "Bambu PAHT-CF @BBL H2DP 0.6 nozzle", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_23", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.00545" + ], + "counter_coef_3": [ + "-0.0202" + ], + "counter_limit_max": [ + "0.03" + ], + "filament_change_length": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_prime_volume": [ + "45" + ], + "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.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2DP 0.8 nozzle.json new file mode 100644 index 0000000000..7fcc74104b --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2DP 0.8 nozzle.json @@ -0,0 +1,78 @@ +{ + "type": "filament", + "name": "Bambu PAHT-CF @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_24", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.00545" + ], + "counter_coef_3": [ + "-0.0202" + ], + "counter_limit_max": [ + "0.03" + ], + "filament_change_length": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_prime_volume": [ + "45" + ], + "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.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 PAHT-CF @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2DP.json index 2ff3440853..c9f352bb43 100644 --- a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2DP.json @@ -1,139 +1,60 @@ { - "type": "filament", - "name": "Bambu PAHT-CF @BBL H2DP", - "inherits": "Bambu PAHT-CF @base", - "from": "system", - "setting_id": "GFSN04_03", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "counter_coef_2": [ - "0.00545" - ], - "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": [ - "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": "Bambu PAHT-CF @BBL H2DP", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_03", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.00545" + ], + "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": [ + "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" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2S 0.6 nozzle.json new file mode 100644 index 0000000000..186c1118cd --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2S 0.6 nozzle.json @@ -0,0 +1,110 @@ +{ + "type": "filament", + "name": "Bambu PAHT-CF @BBL H2S 0.6 nozzle", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_25", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.002" + ], + "counter_coef_3": [ + "-0.055" + ], + "counter_limit_max": [ + "-0.005" + ], + "counter_limit_min": [ + "-0.055" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "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" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.1686" + ], + "hole_limit_max": [ + "0.19" + ], + "hole_limit_min": [ + "0.1686" + ], + "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.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2S 0.8 nozzle.json new file mode 100644 index 0000000000..f974d4c426 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2S 0.8 nozzle.json @@ -0,0 +1,101 @@ +{ + "type": "filament", + "name": "Bambu PAHT-CF @BBL H2S 0.8 nozzle", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_26", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.002" + ], + "counter_coef_3": [ + "-0.055" + ], + "counter_limit_max": [ + "-0.005" + ], + "counter_limit_min": [ + "-0.055" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.1686" + ], + "hole_limit_max": [ + "0.19" + ], + "hole_limit_min": [ + "0.1686" + ], + "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 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 PAHT-CF @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2S.json index ced8efb784..ee24f90784 100644 --- a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2S.json @@ -1,130 +1,98 @@ { - "type": "filament", - "name": "Bambu PAHT-CF @BBL H2S", - "inherits": "Bambu PAHT-CF @base", - "from": "system", - "setting_id": "GFSN04_08", - "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 PAHT-CF @BBL H2S", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_08", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.002" + ], + "counter_coef_3": [ + "-0.055" + ], + "counter_limit_max": [ + "-0.005" + ], + "counter_limit_min": [ + "-0.055" + ], + "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_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.1686" + ], + "hole_limit_max": [ + "0.19" + ], + "hole_limit_min": [ + "0.1686" + ], + "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" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL P2S 0.6 nozzle.json new file mode 100644 index 0000000000..6bf14f208f --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL P2S 0.6 nozzle.json @@ -0,0 +1,104 @@ +{ + "type": "filament", + "name": "Bambu PAHT-CF @BBL P2S 0.6 nozzle", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_27", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.002" + ], + "counter_coef_3": [ + "-0.055" + ], + "counter_limit_max": [ + "-0.005" + ], + "counter_limit_min": [ + "-0.055" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "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.0009" + ], + "hole_coef_3": [ + "0.1686" + ], + "hole_limit_max": [ + "0.19" + ], + "hole_limit_min": [ + "0.1686" + ], + "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.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL P2S 0.8 nozzle.json new file mode 100644 index 0000000000..256de3bf41 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL P2S 0.8 nozzle.json @@ -0,0 +1,95 @@ +{ + "type": "filament", + "name": "Bambu PAHT-CF @BBL P2S 0.8 nozzle", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_28", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.002" + ], + "counter_coef_3": [ + "-0.055" + ], + "counter_limit_max": [ + "-0.005" + ], + "counter_limit_min": [ + "-0.055" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.1686" + ], + "hole_limit_max": [ + "0.19" + ], + "hole_limit_min": [ + "0.1686" + ], + "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 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 PAHT-CF @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL P2S.json index 388db9c1ef..1adc791245 100644 --- a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL P2S.json @@ -1,170 +1,92 @@ { - "type": "filament", - "name": "Bambu PAHT-CF @BBL P2S", - "inherits": "Bambu PAHT-CF @base", - "from": "system", - "setting_id": "GFSN04_02", - "instantiation": "true", - "activate_air_filtration": [ - "0" - ], - "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_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 PAHT-CF @BBL P2S", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_02", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.002" + ], + "counter_coef_3": [ + "-0.055" + ], + "counter_limit_max": [ + "-0.005" + ], + "counter_limit_min": [ + "-0.055" + ], + "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.0009" + ], + "hole_coef_3": [ + "0.1686" + ], + "hole_limit_max": [ + "0.19" + ], + "hole_limit_min": [ + "0.1686" + ], + "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" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X1C 0.6 nozzle.json new file mode 100644 index 0000000000..bccc102d2d --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X1C 0.6 nozzle.json @@ -0,0 +1,60 @@ +{ + "type": "filament", + "name": "Bambu PAHT-CF @BBL X1C 0.6 nozzle", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_12", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "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.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab P1S 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X1C.json index ac1cb704af..f8bfc2d417 100644 --- a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X1C.json @@ -1,133 +1,60 @@ { - "type": "filament", - "name": "Bambu PAHT-CF @BBL X1C", - "inherits": "Bambu PAHT-CF @base", - "from": "system", - "setting_id": "GFSN04", - "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 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 PAHT-CF @BBL X1C", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "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 X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 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" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X2D 0.4 nozzle.json index 32a05382ba..0f02b6ea95 100644 --- a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X2D 0.4 nozzle.json @@ -1,299 +1,120 @@ { - "type": "filament", - "name": "Bambu PAHT-CF @BBL X2D 0.4 nozzle", - "inherits": "Bambu PAHT-CF @base", - "from": "system", - "setting_id": "GFSN04_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" - ], - "chamber_temperatures": [ - "60" - ], - "counter_coef_2": [ - "0.002" - ], - "counter_coef_3": [ - "-0.055" - ], - "counter_limit_max": [ - "-0.005" - ], - "counter_limit_min": [ - "-0.055" - ], - "fan_max_speed": [ - "45" - ], - "fan_min_speed": [ - "25" - ], - "filament_flow_ratio": [ - "0.96", - "0.96", - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "290" - ], - "hole_coef_2": [ - "0.0009" - ], - "hole_coef_3": [ - "0.1686" - ], - "hole_limit_max": [ - "0.19" - ], - "hole_limit_min": [ - "0.1686" - ], - "nozzle_temperature": [ - "290", - "290", - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290", - "290", - "290" - ], - "overhang_fan_speed": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PAHT-CF @BBL X2D 0.4 nozzle", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_04", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.002" + ], + "counter_coef_3": [ + "-0.055" + ], + "counter_limit_max": [ + "-0.005" + ], + "counter_limit_min": [ + "-0.055" + ], + "fan_max_speed": [ + "45" + ], + "fan_min_speed": [ + "25" + ], + "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": [ + "8", + "8", + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.1686" + ], + "hole_limit_max": [ + "0.19" + ], + "hole_limit_min": [ + "0.1686" + ], + "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_speed": [ + "60" + ], + "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 PAHT-CF @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..d4a2c11570 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X2D 0.8 nozzle.json @@ -0,0 +1,113 @@ +{ + "type": "filament", + "name": "Bambu PAHT-CF @BBL X2D 0.8 nozzle", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_29", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.002" + ], + "counter_coef_3": [ + "-0.055" + ], + "counter_limit_max": [ + "-0.005" + ], + "counter_limit_min": [ + "-0.055" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_flush_temp_fast": [ + "0", + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.1686" + ], + "hole_limit_max": [ + "0.19" + ], + "hole_limit_min": [ + "0.1686" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290" + ], + "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 PAHT-CF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X2D.json index 89c68e9c33..39fc532026 100644 --- a/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X2D.json @@ -1,291 +1,111 @@ { - "type": "filament", - "name": "Bambu PAHT-CF @BBL X2D", - "inherits": "Bambu PAHT-CF @base", - "from": "system", - "setting_id": "GFSN04_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.002" - ], - "counter_coef_3": [ - "-0.055" - ], - "counter_limit_max": [ - "-0.005" - ], - "counter_limit_min": [ - "-0.055" - ], - "filament_flow_ratio": [ - "0.96", - "0.96", - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "290" - ], - "hole_coef_2": [ - "0.0009" - ], - "hole_coef_3": [ - "0.1686" - ], - "hole_limit_max": [ - "0.19" - ], - "hole_limit_min": [ - "0.1686" - ], - "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 PAHT-CF @BBL X2D", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_05", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.002" + ], + "counter_coef_3": [ + "-0.055" + ], + "counter_limit_max": [ + "-0.005" + ], + "counter_limit_min": [ + "-0.055" + ], + "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": [ + "8", + "8", + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.1686" + ], + "hole_limit_max": [ + "0.19" + ], + "hole_limit_min": [ + "0.1686" + ], + "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" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PAHT-CF @base.json b/resources/profiles/BBL/filament/Bambu PAHT-CF @base.json index 80c0599caa..4a1d43c5f2 100644 --- a/resources/profiles/BBL/filament/Bambu PAHT-CF @base.json +++ b/resources/profiles/BBL/filament/Bambu PAHT-CF @base.json @@ -1,51 +1,54 @@ { - "type": "filament", - "name": "Bambu PAHT-CF @base", - "inherits": "fdm_filament_pa", - "from": "system", - "filament_id": "OF2VFe4J", - "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": [ - "Bambu Lab" - ], - "full_fan_speed_layer": [ - "2" - ], + "type": "filament", + "name": "Bambu PAHT-CF @base", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "OF2VFe4J", + "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.", + "additional_fan_full_speed_layer": [ + "2" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "91.99" + ], + "filament_density": [ + "1.06" + ], "filament_dev_chamber_drying_time": [ "16" ], - "impact_strength_z": [ - "13.3" - ], - "overhang_fan_speed": [ - "40" - ], - "overhang_fan_threshold": [ - "0%" - ], - "temperature_vitrification": [ - "180" - ] -} + "filament_flow_ratio": [ + "0.96" + ], + "filament_type": [ + "PA-CF" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "full_fan_speed_layer": [ + "2" + ], + "impact_strength_z": [ + "13.3" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "temperature_vitrification": [ + "180" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL A1 0.2 nozzle.json index e59e2fe946..790ddb7c4a 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL A1 0.2 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PC @BBL A1 0.2 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_13", - "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" - ], - "nozzle_temperature": [ - "260" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "slow_down_layer_time": [ - "12" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC @BBL A1 0.2 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_13", + "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" + ], + "nozzle_temperature": [ + "260" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "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/Bambu PC @BBL A1.json b/resources/profiles/BBL/filament/Bambu PC @BBL A1.json index 69742e339f..fa10655ee8 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL A1.json @@ -1,40 +1,40 @@ { - "type": "filament", - "name": "Bambu PC @BBL A1", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_14", - "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" - ], - "slow_down_layer_time": [ - "12" - ], - "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": "Bambu PC @BBL A1", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_14", + "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" + ], + "slow_down_layer_time": [ + "12" + ], + "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/Bambu PC @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL H2C 0.2 nozzle.json index 77cc5e92db..a3ba75304a 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL H2C 0.2 nozzle.json @@ -1,204 +1,111 @@ { - "type": "filament", - "name": "Bambu PC @BBL H2C 0.2 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_33", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "counter_coef_2": [ - "0.0081" - ], - "counter_coef_3": [ - "0.0183" - ], - "counter_limit_max": [ - "0.2208" - ], - "counter_limit_min": [ - "0.0183" - ], - "fan_max_speed": [ - "40" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.94", - "0.94" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_pre_cooling_temperature_nc": [ - "240", - "240" - ], - "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.0009" - ], - "hole_coef_3": [ - "0.0725" - ], - "hole_limit_max": [ - "0.095" - ], - "hole_limit_min": [ - "0.0725" - ], - "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" - ], - "temperature_vitrification": [ - "90" - ], - "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 PC @BBL H2C 0.2 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_33", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "counter_limit_min": [ + "0.0183" + ], + "fan_max_speed": [ + "40" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_pre_cooling_temperature_nc": [ + "240", + "240" + ], + "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.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "hole_limit_min": [ + "0.0725" + ], + "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" + ], + "temperature_vitrification": [ + "90" + ], + "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 PC @BBL H2C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL H2C 0.6 nozzle.json index 6b8f2211d5..b53e6eaf93 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL H2C 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL H2C 0.6 nozzle.json @@ -1,204 +1,141 @@ { - "type": "filament", - "name": "Bambu PC @BBL H2C 0.6 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_40", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "counter_coef_2": [ - "0.0081" - ], - "counter_coef_3": [ - "0.0183" - ], - "counter_limit_max": [ - "0.2208" - ], - "counter_limit_min": [ - "0.0183" - ], - "fan_max_speed": [ - "40" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "25", - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "240", - "240" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "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.0009" - ], - "hole_coef_3": [ - "0.0725" - ], - "hole_limit_max": [ - "0.095" - ], - "hole_limit_min": [ - "0.0725" - ], - "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" - ], - "temperature_vitrification": [ - "90" - ], - "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 PC @BBL H2C 0.6 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_40", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_min": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "25", + "30", + "25" + ], + "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" + ], + "filament_change_length_nc": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_min": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "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" + ], + "temperature_vitrification": [ + "90" + ], + "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 PC @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL H2C 0.8 nozzle.json index 366352bae8..f4f455a8b2 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL H2C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL H2C 0.8 nozzle.json @@ -1,204 +1,127 @@ { - "type": "filament", - "name": "Bambu PC @BBL H2C 0.8 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_41", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "counter_coef_2": [ - "0.0081" - ], - "counter_coef_3": [ - "0.0183" - ], - "counter_limit_max": [ - "0.2208" - ], - "counter_limit_min": [ - "0.0183" - ], - "fan_max_speed": [ - "40" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "25", - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "240", - "240" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "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.0009" - ], - "hole_coef_3": [ - "0.0725" - ], - "hole_limit_max": [ - "0.095" - ], - "hole_limit_min": [ - "0.0725" - ], - "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" - ], - "temperature_vitrification": [ - "90" - ], - "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 PC @BBL H2C 0.8 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_41", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "counter_limit_min": [ + "0.0183" + ], + "fan_max_speed": [ + "40" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "25", + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "240", + "240" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "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.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "hole_limit_min": [ + "0.0725" + ], + "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" + ], + "temperature_vitrification": [ + "90" + ], + "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 PC @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PC @BBL H2C.json index 12b7201a0f..b2bb924ca0 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL H2C.json @@ -1,204 +1,141 @@ { - "type": "filament", - "name": "Bambu PC @BBL H2C", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_34", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "counter_coef_2": [ - "0.0081" - ], - "counter_coef_3": [ - "0.0183" - ], - "counter_limit_max": [ - "0.2208" - ], - "counter_limit_min": [ - "0.0183" - ], - "fan_max_speed": [ - "40" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "20", - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "240", - "240" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "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.0009" - ], - "hole_coef_3": [ - "0.0725" - ], - "hole_limit_max": [ - "0.095" - ], - "hole_limit_min": [ - "0.0725" - ], - "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" - ], - "temperature_vitrification": [ - "90" - ], - "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 PC @BBL H2C", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_34", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_min": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "20", + "30", + "20" + ], + "filament_retraction_length": [ + "0.4", + "0.6", + "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" + ], + "filament_change_length_nc": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_min": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "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" + ], + "temperature_vitrification": [ + "90" + ], + "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 PC @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL H2D 0.2 nozzle.json index 4f832f4dfb..fea45a13bd 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL H2D 0.2 nozzle.json @@ -1,134 +1,87 @@ { - "type": "filament", - "name": "Bambu PC @BBL H2D 0.2 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_21", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 PC @BBL H2D 0.2 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_21", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "counter_limit_min": [ + "0.0183" + ], + "fan_max_speed": [ + "40" + ], + "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" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "hole_limit_min": [ + "0.0725" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "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 PC @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL H2D 0.4 nozzle.json index 395b12cf5d..7877739470 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL H2D 0.4 nozzle.json @@ -1,134 +1,114 @@ { - "type": "filament", - "name": "Bambu PC @BBL H2D 0.4 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_15", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "20", - "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" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 PC @BBL H2D 0.4 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_15", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "counter_limit_min": [ + "0.0183" + ], + "fan_max_speed": [ + "40" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "20", + "35", + "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" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "hole_limit_min": [ + "0.0725" + ], + "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 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 PC @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL H2D 0.6 nozzle.json index 85f22b1870..50a080979a 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL H2D 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL H2D 0.6 nozzle.json @@ -1,134 +1,114 @@ { - "type": "filament", - "name": "Bambu PC @BBL H2D 0.6 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_23", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 PC @BBL H2D 0.6 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_23", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "counter_limit_min": [ + "0.0183" + ], + "fan_max_speed": [ + "40" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "25", + "35", + "25" + ], + "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.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "hole_limit_min": [ + "0.0725" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "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 PC @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL H2D 0.8 nozzle.json index a4682f124e..37aa3eb857 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL H2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL H2D 0.8 nozzle.json @@ -1,134 +1,103 @@ { - "type": "filament", - "name": "Bambu PC @BBL H2D 0.8 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_22", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 PC @BBL H2D 0.8 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_22", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "counter_limit_min": [ + "0.0183" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "25", + "35" + ], + "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.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "hole_limit_min": [ + "0.0725" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "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 PC @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL H2DP 0.2 nozzle.json index b3f3ea8e80..55575cee0b 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL H2DP 0.2 nozzle.json @@ -1,134 +1,57 @@ { - "type": "filament", - "name": "Bambu PC @BBL H2DP 0.2 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_28", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 PC @BBL H2DP 0.2 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_28", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "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": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "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 PC @BBL H2DP 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL H2DP 0.4 nozzle.json index 208eb081f2..4f843feadd 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL H2DP 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL H2DP 0.4 nozzle.json @@ -1,134 +1,73 @@ { - "type": "filament", - "name": "Bambu PC @BBL H2DP 0.4 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_27", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 PC @BBL H2DP 0.4 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_27", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "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": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "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 PC @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL H2DP 0.6 nozzle.json index cd00977aba..1417c3c5a0 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL H2DP 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL H2DP 0.6 nozzle.json @@ -1,134 +1,73 @@ { - "type": "filament", - "name": "Bambu PC @BBL H2DP 0.6 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_30", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 PC @BBL H2DP 0.6 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_30", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "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" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "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 PC @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL H2DP 0.8 nozzle.json index a8f41a0449..01f3c1431f 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL H2DP 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL H2DP 0.8 nozzle.json @@ -1,134 +1,73 @@ { - "type": "filament", - "name": "Bambu PC @BBL H2DP 0.8 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_29", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 PC @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_29", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "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" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "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 PC @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL H2S 0.2 nozzle.json index f17b3105aa..8b6b883bb6 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL H2S 0.2 nozzle.json @@ -1,131 +1,96 @@ { - "type": "filament", - "name": "Bambu PC @BBL H2S 0.2 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_17", - "instantiation": "true", - "fan_max_speed": [ - "40" - ], - "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": "Bambu PC @BBL H2S 0.2 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_17", + "instantiation": "true", + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_min": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "fan_max_speed": [ + "40" + ], + "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_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_min": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "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/Bambu PC @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL H2S 0.6 nozzle.json index 43806d8491..21a6b513d5 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL H2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL H2S 0.6 nozzle.json @@ -1,134 +1,124 @@ { - "type": "filament", - "name": "Bambu PC @BBL H2S 0.6 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_38", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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" - ], - "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.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PC @BBL H2S 0.6 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_38", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_min": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "fan_max_speed": [ + "40" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "25", + "35", + "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.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_min": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "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.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL H2S 0.8 nozzle.json index 11d2ca73d6..6564a05f22 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL H2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL H2S 0.8 nozzle.json @@ -1,134 +1,111 @@ { - "type": "filament", - "name": "Bambu PC @BBL H2S 0.8 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_39", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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" - ], - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PC @BBL H2S 0.8 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_39", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_min": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "25", + "35" + ], + "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.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_min": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "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.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 PC @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PC @BBL H2S.json index a4a62b2304..0a6ae94079 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL H2S.json @@ -1,134 +1,124 @@ { - "type": "filament", - "name": "Bambu PC @BBL H2S", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_16", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "20", - "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" - ], - "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" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PC @BBL H2S", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_16", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_min": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "fan_max_speed": [ + "40" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "20", + "35", + "20" + ], + "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.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_min": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "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" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL P1S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL P1S 0.2 nozzle.json index f5f0aae33e..4190eb1836 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL P1S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL P1S 0.2 nozzle.json @@ -1,29 +1,29 @@ { - "type": "filament", - "name": "Bambu PC @BBL P1S 0.2 nozzle", - "inherits": "Bambu PC @BBL X1C 0.2 nozzle", - "from": "system", - "setting_id": "GFSC00_06", - "instantiation": "true", - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab P1S 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC @BBL P1S 0.2 nozzle", + "inherits": "Bambu PC @BBL X1C 0.2 nozzle", + "from": "system", + "setting_id": "GFSC00_06", + "instantiation": "true", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "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/Bambu PC @BBL P1S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL P1S 0.6 nozzle.json index 8d15033586..0e0857954a 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL P1S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL P1S 0.6 nozzle.json @@ -1,29 +1,45 @@ { - "type": "filament", - "name": "Bambu PC @BBL P1S 0.6 nozzle", - "inherits": "Bambu PC @BBL X1C 0.6 nozzle", - "from": "system", - "setting_id": "GFSC00_08", - "instantiation": "true", - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab P1S 0.6 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC @BBL P1S 0.6 nozzle", + "inherits": "Bambu PC @BBL X1C 0.6 nozzle", + "from": "system", + "setting_id": "GFSC00_08", + "instantiation": "true", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "filament_flow_ratio": [ + "0.94", + "0.945" + ], + "filament_retraction_length": [ + "nil", + "0.45" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_z_hop_types": [ + "nil", + "Spiral Lift" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL P1S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL P1S 0.8 nozzle.json index 0bb8824525..144a5cae30 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL P1S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL P1S 0.8 nozzle.json @@ -1,29 +1,29 @@ { - "type": "filament", - "name": "Bambu PC @BBL P1S 0.8 nozzle", - "inherits": "Bambu PC @BBL X1C 0.8 nozzle", - "from": "system", - "setting_id": "GFSC00_07", - "instantiation": "true", - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab P1S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC @BBL P1S 0.8 nozzle", + "inherits": "Bambu PC @BBL X1C 0.8 nozzle", + "from": "system", + "setting_id": "GFSC00_07", + "instantiation": "true", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL P1S.json b/resources/profiles/BBL/filament/Bambu PC @BBL P1S.json index eb9a5eaa40..4d6730fde8 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL P1S.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL P1S.json @@ -1,29 +1,33 @@ { - "type": "filament", - "name": "Bambu PC @BBL P1S", - "inherits": "Bambu PC @BBL X1C", - "from": "system", - "setting_id": "GFSC00_05", - "instantiation": "true", - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab P1S 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC @BBL P1S", + "inherits": "Bambu PC @BBL X1C", + "from": "system", + "setting_id": "GFSC00_05", + "instantiation": "true", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "filament_max_volumetric_speed": [ + "18", + "29" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL P2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL P2S 0.4 nozzle.json index 23bea78851..37390058bf 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL P2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL P2S 0.4 nozzle.json @@ -1,189 +1,113 @@ { - "type": "filament", - "name": "Bambu PC @BBL P2S 0.4 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_20", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "18", - "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": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct 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" - ], - "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" - ], - "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" - ], - "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 P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PC @BBL P2S 0.4 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_20", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_min": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "30", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_min": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "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" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL P2S 0.6 nozzle.json index 642dd4919e..0e8d81de92 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL P2S 0.6 nozzle.json @@ -1,149 +1,138 @@ { - "type": "filament", - "name": "Bambu PC @BBL P2S 0.6 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_26", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "18", - "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": [ - "40", - "40" - ], - "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": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "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 P2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PC @BBL P2S 0.6 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_26", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_min": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "35", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_retraction_speed": [ + "40", + "40", + "40" + ], + "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": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_min": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "260", + "260", + "260" + ], + "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" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL P2S 0.8 nozzle.json index 6f79279667..27a717ab89 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL P2S 0.8 nozzle.json @@ -1,149 +1,108 @@ { - "type": "filament", - "name": "Bambu PC @BBL P2S 0.8 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_25", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "18", - "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": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct 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" - ], - "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 P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PC @BBL P2S 0.8 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_25", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "counter_limit_min": [ + "0.0183" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "35" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "hole_limit_min": [ + "0.0725" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "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 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 PC @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL X1C 0.2 nozzle.json index a0052d4ee4..b2227e037e 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL X1C 0.2 nozzle.json @@ -1,126 +1,53 @@ { - "type": "filament", - "name": "Bambu PC @BBL X1C 0.2 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_02", - "instantiation": "true", - "fan_max_speed": [ - "40" - ], - "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": [ - "260", - "260" - ], - "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 X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC @BBL X1C 0.2 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_02", + "instantiation": "true", + "fan_max_speed": [ + "40" + ], + "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": [ + "260", + "260" + ], + "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 X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL X1C 0.6 nozzle.json index 6b86eb6cc3..e8b0cf29d0 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL X1C 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL X1C 0.6 nozzle.json @@ -1,126 +1,65 @@ { - "type": "filament", - "name": "Bambu PC @BBL X1C 0.6 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_01", - "instantiation": "true", - "fan_max_speed": [ - "40" - ], - "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" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "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 X1 Carbon 0.6 nozzle", - "Bambu Lab X1 0.6 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC @BBL X1C 0.6 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_01", + "instantiation": "true", + "fan_max_speed": [ + "40" + ], + "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" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "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 X1 Carbon 0.6 nozzle", + "Bambu Lab X1 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL X1C 0.8 nozzle.json index a7e0cc8222..7b18784bc6 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL X1C 0.8 nozzle.json @@ -1,126 +1,53 @@ { - "type": "filament", - "name": "Bambu PC @BBL X1C 0.8 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_00", - "instantiation": "true", - "fan_max_speed": [ - "40" - ], - "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" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "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 X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC @BBL X1C 0.8 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_00", + "instantiation": "true", + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "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": [ + "260", + "260" + ], + "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 X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PC @BBL X1C.json index dfe60f0ab3..2462d8ccb9 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL X1C.json @@ -1,126 +1,53 @@ { - "type": "filament", - "name": "Bambu PC @BBL X1C", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00", - "instantiation": "true", - "fan_max_speed": [ - "40" - ], - "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" - ], - "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 X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC @BBL X1C", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00", + "instantiation": "true", + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "29" + ], + "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 X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL X1E 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL X1E 0.2 nozzle.json index a0078a3dbb..8cab064d11 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL X1E 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL X1E 0.2 nozzle.json @@ -1,128 +1,55 @@ { - "type": "filament", - "name": "Bambu PC @BBL X1E 0.2 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_09", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "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 X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC @BBL X1E 0.2 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_09", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "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": [ + "260", + "260" + ], + "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 X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL X1E 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL X1E 0.6 nozzle.json index 0409996248..6166c3653e 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL X1E 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL X1E 0.6 nozzle.json @@ -1,128 +1,55 @@ { - "type": "filament", - "name": "Bambu PC @BBL X1E 0.6 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_10", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "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 X1E 0.6 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC @BBL X1E 0.6 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_10", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "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": [ + "260", + "260" + ], + "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 X1E 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL X1E 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL X1E 0.8 nozzle.json index 0ee8891ad2..299637f67d 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL X1E 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL X1E 0.8 nozzle.json @@ -1,128 +1,55 @@ { - "type": "filament", - "name": "Bambu PC @BBL X1E 0.8 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_11", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "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 X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC @BBL X1E 0.8 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_11", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "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": [ + "260", + "260" + ], + "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 X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL X1E.json b/resources/profiles/BBL/filament/Bambu PC @BBL X1E.json index a2bad02c4b..a0f287e1e5 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL X1E.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL X1E.json @@ -1,128 +1,55 @@ { - "type": "filament", - "name": "Bambu PC @BBL X1E", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_12", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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": [ - "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 X1E 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC @BBL X1E", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_12", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "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": [ + "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 X1E 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL X2D 0.4 nozzle.json index 4b4fb66fc0..ef08e157a6 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL X2D 0.4 nozzle.json @@ -1,302 +1,158 @@ { - "type": "filament", - "name": "Bambu PC @BBL X2D 0.4 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_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", - "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" - ], - "chamber_temperatures": [ - "60" - ], - "counter_coef_2": [ - "0.0081" - ], - "counter_coef_3": [ - "0.0183" - ], - "counter_limit_max": [ - "0.2208" - ], - "counter_limit_min": [ - "0.0183" - ], - "fan_max_speed": [ - "55" - ], - "fan_min_speed": [ - "25" - ], - "filament_flow_ratio": [ - "0.94", - "0.94", - "0.94", - "0.94" - ], - "filament_max_volumetric_speed": [ - "18", - "30", - "18", - "20" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "280" - ], - "hole_coef_2": [ - "0.0009" - ], - "hole_coef_3": [ - "0.0725" - ], - "hole_limit_max": [ - "0.095" - ], - "hole_limit_min": [ - "0.0725" - ], - "nozzle_temperature": [ - "280", - "280", - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270", - "270", - "270" - ], - "overhang_fan_speed": [ - "75" - ], - "slow_down_layer_time": [ - "12" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PC @BBL X2D 0.4 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_18", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "counter_limit_min": [ + "0.0183" + ], + "fan_max_speed": [ + "55" + ], + "fan_min_speed": [ + "25" + ], + "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": [ + "18", + "30", + "18", + "18", + "20", + "18" + ], + "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": [ + "280" + ], + "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" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "hole_limit_min": [ + "0.0725" + ], + "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" + ], + "overhang_fan_speed": [ + "75" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "120" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PC @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PC @BBL X2D 0.8 nozzle.json index 00d22e5e27..45a270ee3a 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL X2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL X2D 0.8 nozzle.json @@ -1,296 +1,125 @@ { - "type": "filament", - "name": "Bambu PC @BBL X2D 0.8 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_37", - "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" - ], - "chamber_temperatures": [ - "60" - ], - "counter_coef_2": [ - "0.0081" - ], - "counter_coef_3": [ - "0.0183" - ], - "counter_limit_max": [ - "0.2208" - ], - "counter_limit_min": [ - "0.0183" - ], - "fan_max_speed": [ - "40" - ], - "filament_flow_ratio": [ - "0.94", - "0.94", - "0.94", - "0.94" - ], - "filament_max_volumetric_speed": [ - "18", - "35", - "18", - "18" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "260" - ], - "hole_coef_2": [ - "0.0009" - ], - "hole_coef_3": [ - "0.0725" - ], - "hole_limit_max": [ - "0.095" - ], - "hole_limit_min": [ - "0.0725" - ], - "nozzle_temperature": [ - "260", - "260", - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270", - "270", - "270" - ], - "slow_down_layer_time": [ - "12" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PC @BBL X2D 0.8 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_37", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "counter_limit_min": [ + "0.0183" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "35", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "260" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "hole_limit_min": [ + "0.0725" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "260", + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_layer_time": [ + "12" + ], + "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 PC @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PC @BBL X2D.json index 8e388cacbe..dfd7ca334f 100644 --- a/resources/profiles/BBL/filament/Bambu PC @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PC @BBL X2D.json @@ -1,296 +1,149 @@ { - "type": "filament", - "name": "Bambu PC @BBL X2D", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_31", - "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" - ], - "chamber_temperatures": [ - "60" - ], - "counter_coef_2": [ - "0.0081" - ], - "counter_coef_3": [ - "0.0183" - ], - "counter_limit_max": [ - "0.2208" - ], - "counter_limit_min": [ - "0.0183" - ], - "fan_max_speed": [ - "40" - ], - "filament_flow_ratio": [ - "0.94", - "0.94", - "0.94", - "0.94" - ], - "filament_max_volumetric_speed": [ - "18", - "35", - "18", - "18" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "260" - ], - "hole_coef_2": [ - "0.0009" - ], - "hole_coef_3": [ - "0.0725" - ], - "hole_limit_max": [ - "0.095" - ], - "hole_limit_min": [ - "0.0725" - ], - "nozzle_temperature": [ - "260", - "260", - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270", - "270", - "270" - ], - "slow_down_layer_time": [ - "12" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PC @BBL X2D", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_31", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "0.0081" + ], + "counter_coef_3": [ + "0.0183" + ], + "counter_limit_max": [ + "0.2208" + ], + "counter_limit_min": [ + "0.0183" + ], + "fan_max_speed": [ + "40" + ], + "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": [ + "18", + "35", + "18", + "18", + "18", + "18" + ], + "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": [ + "260" + ], + "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" + ], + "hole_coef_2": [ + "0.0009" + ], + "hole_coef_3": [ + "0.0725" + ], + "hole_limit_max": [ + "0.095" + ], + "hole_limit_min": [ + "0.0725" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "260", + "260", + "260", + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270", + "270", + "270" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_layer_time": [ + "12" + ], + "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 PC @base.json b/resources/profiles/BBL/filament/Bambu PC @base.json index ee235b17d6..bb6ffcaafd 100644 --- a/resources/profiles/BBL/filament/Bambu PC @base.json +++ b/resources/profiles/BBL/filament/Bambu PC @base.json @@ -1,20 +1,23 @@ { - "type": "filament", - "name": "Bambu PC @base", - "inherits": "fdm_filament_pc", - "from": "system", - "filament_id": "OFKhMPeX", - "instantiation": "false", - "filament_vendor": [ - "Bambu Lab" - ], - "filament_cost": [ - "39.99" - ], - "filament_flow_ratio": [ - "0.94" - ], - "impact_strength_z": [ - "9.0" - ] -} + "type": "filament", + "name": "Bambu PC @base", + "inherits": "fdm_filament_pc", + "from": "system", + "filament_id": "OFKhMPeX", + "instantiation": "false", + "filament_cost": [ + "36.99" + ], + "filament_density": [ + "1.185" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "9.0" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC FR @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL A1 0.2 nozzle.json index d6ff51600a..4906468b1c 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL A1 0.2 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL A1 0.2 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_15", - "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" - ], - "nozzle_temperature": [ - "260" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "slow_down_layer_time": [ - "12" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC FR @BBL A1 0.2 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_15", + "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" + ], + "nozzle_temperature": [ + "260" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "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/Bambu PC FR @BBL A1.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL A1.json index 337247b285..a26fd5f556 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL A1.json @@ -1,40 +1,40 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL A1", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_14", - "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" - ], - "slow_down_layer_time": [ - "12" - ], - "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": "Bambu PC FR @BBL A1", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_14", + "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" + ], + "slow_down_layer_time": [ + "12" + ], + "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/Bambu PC FR @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2C 0.2 nozzle.json index 2753dcaf30..ffde022ea3 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2C 0.2 nozzle.json @@ -1,180 +1,87 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL H2C 0.2 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_32", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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" - ], - "temperature_vitrification": [ - "90" - ], - "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 PC FR @BBL H2C 0.2 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_32", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "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" + ], + "temperature_vitrification": [ + "90" + ], + "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 PC FR @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2C 0.4 nozzle.json index 660d134ea6..fcf1a079ce 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2C 0.4 nozzle.json @@ -1,180 +1,117 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL H2C 0.4 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_31", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "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": [ - "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" - ], - "temperature_vitrification": [ - "90" - ], - "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 PC FR @BBL H2C 0.4 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_31", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "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": [ + "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" + ], + "temperature_vitrification": [ + "90" + ], + "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 PC FR @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2C.json index d5ee574f47..957304bc2a 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2C.json @@ -1,181 +1,118 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL H2C", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_33", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "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": [ - "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" - ], - "temperature_vitrification": [ - "90" - ], - "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 PC FR @BBL H2C", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_33", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "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": [ + "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" + ], + "temperature_vitrification": [ + "90" + ], + "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 PC FR @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2D 0.2 nozzle.json index 2ae2f4ed31..e768297ad6 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2D 0.2 nozzle.json @@ -1,134 +1,63 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL H2D 0.2 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_17", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 PC FR @BBL H2D 0.2 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_17", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "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" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "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 PC FR @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2D 0.4 nozzle.json index 7c34976c60..75dffbd64b 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2D 0.4 nozzle.json @@ -1,134 +1,70 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL H2D 0.4 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_16", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 PC FR @BBL H2D 0.4 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_16", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "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 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 PC FR @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2D 0.6 nozzle.json index a366b531e8..e30efad3f5 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL H2D 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2D 0.6 nozzle.json @@ -1,134 +1,70 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL H2D 0.6 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_18", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 PC FR @BBL H2D 0.6 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_18", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "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 PC FR @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2D 0.8 nozzle.json index ea9a6e584a..9806d53088 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL H2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2D 0.8 nozzle.json @@ -1,134 +1,63 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL H2D 0.8 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_19", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 PC FR @BBL H2D 0.8 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_19", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "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 PC FR @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2DP 0.2 nozzle.json index dadb07a4f8..d61c1da460 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2DP 0.2 nozzle.json @@ -1,134 +1,57 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL H2DP 0.2 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_25", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 PC FR @BBL H2DP 0.2 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_25", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "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": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "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 PC FR @BBL H2DP 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2DP 0.4 nozzle.json index 774db3dc5e..8902b0bd27 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL H2DP 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2DP 0.4 nozzle.json @@ -1,134 +1,57 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL H2DP 0.4 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_24", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 PC FR @BBL H2DP 0.4 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_24", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "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 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 PC FR @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2DP 0.6 nozzle.json index aa4b83bd64..0ba2dc14ed 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL H2DP 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2DP 0.6 nozzle.json @@ -1,134 +1,57 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL H2DP 0.6 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_26", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 PC FR @BBL H2DP 0.6 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_26", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "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" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC FR @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2DP 0.8 nozzle.json index 0872db982f..1b1768ef51 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL H2DP 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2DP 0.8 nozzle.json @@ -1,134 +1,57 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL H2DP 0.8 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_27", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "12" - ], - "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 PC FR @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_27", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "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 PC FR @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2S 0.2 nozzle.json index 373788d188..ebcb2129dd 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2S 0.2 nozzle.json @@ -1,134 +1,75 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL H2S 0.2 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_35", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": "Bambu PC FR @BBL H2S 0.2 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_35", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "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_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": [ + "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/Bambu PC FR @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2S.json index d27a54971c..cf9963a435 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL H2S.json @@ -1,136 +1,102 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL H2S", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_34", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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": [ - "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": "Bambu PC FR @BBL H2S", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_34", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94" + ], + "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": [ + "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/Bambu PC FR @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL P1P 0.2 nozzle.json index 44dec2a9ee..b9e028b071 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL P1P 0.2 nozzle.json @@ -1,146 +1,73 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL P1P 0.2 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_09", - "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 FR @BBL P1P 0.2 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_09", + "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/Bambu PC FR @BBL P1P.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL P1P.json index 176477533c..50c66f2864 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL P1P.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL P1P.json @@ -1,148 +1,75 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL P1P", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_08", - "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 FR @BBL P1P", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_08", + "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_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.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC FR @BBL P1S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL P1S 0.2 nozzle.json index 47f67143b6..472acab285 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL P1S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL P1S 0.2 nozzle.json @@ -1,143 +1,70 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL P1S 0.2 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_05", - "instantiation": "true", - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_max_speed": [ - "40" - ], - "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" - ], - "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 P1S 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC FR @BBL P1S 0.2 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_05", + "instantiation": "true", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "40" + ], + "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" + ], + "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 P1S 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC FR @BBL P1S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL P1S 0.6 nozzle.json index 4626cde396..1089e6e4d7 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL P1S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL P1S 0.6 nozzle.json @@ -1,143 +1,70 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL P1S 0.6 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_06", - "instantiation": "true", - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "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 P1S 0.6 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC FR @BBL P1S 0.6 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_06", + "instantiation": "true", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "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": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "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 P1S 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC FR @BBL P1S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL P1S 0.8 nozzle.json index c792e9c63a..a8d3cea654 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL P1S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL P1S 0.8 nozzle.json @@ -1,143 +1,70 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL P1S 0.8 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_07", - "instantiation": "true", - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "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 P1S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC FR @BBL P1S 0.8 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_07", + "instantiation": "true", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "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": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "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 P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC FR @BBL P1S.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL P1S.json index 0f4534446c..0150515d70 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL P1S.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL P1S.json @@ -1,143 +1,70 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL P1S", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_04", - "instantiation": "true", - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_max_speed": [ - "40" - ], - "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" - ], - "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 P1S 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC FR @BBL P1S", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_04", + "instantiation": "true", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "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": [ + "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" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC FR @BBL P2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL P2S 0.4 nozzle.json index f1e5980a4f..ea21badf01 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL P2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL P2S 0.4 nozzle.json @@ -1,189 +1,89 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL P2S 0.4 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_20", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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" - ], - "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" - ], - "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 P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PC FR @BBL P2S 0.4 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_20", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "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_layer_time": [ + "12" + ], + "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" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC FR @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL P2S 0.6 nozzle.json index f5e1916e48..ae0a394959 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL P2S 0.6 nozzle.json @@ -1,189 +1,94 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL P2S 0.6 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_22", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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" - ], - "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": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "override_process_overhang_speed": [ - "0", - "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 P2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PC FR @BBL P2S 0.6 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_22", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "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": [ + "260", + "260", + "260" + ], + "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" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "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 PC FR @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL P2S 0.8 nozzle.json index 82ec0320ed..6698de66a4 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL P2S 0.8 nozzle.json @@ -1,189 +1,88 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL P2S 0.8 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_23", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "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": [ - "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" - ], - "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" - ], - "override_process_overhang_speed": [ - "0", - "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 P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PC FR @BBL P2S 0.8 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_23", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "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" + ], + "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 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 PC FR @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL X1C 0.2 nozzle.json index 6a82227f4b..a58b3a34fc 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL X1C 0.2 nozzle.json @@ -1,126 +1,53 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL X1C 0.2 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_03", - "instantiation": "true", - "fan_max_speed": [ - "40" - ], - "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": [ - "260", - "260" - ], - "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 X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC FR @BBL X1C 0.2 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_03", + "instantiation": "true", + "fan_max_speed": [ + "40" + ], + "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": [ + "260", + "260" + ], + "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 X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC FR @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL X1C 0.6 nozzle.json index 00bb8c1fff..5f9fc6b9f8 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL X1C 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL X1C 0.6 nozzle.json @@ -1,126 +1,53 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL X1C 0.6 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_01", - "instantiation": "true", - "fan_max_speed": [ - "40" - ], - "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" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "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 X1 Carbon 0.6 nozzle", - "Bambu Lab X1 0.6 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC FR @BBL X1C 0.6 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_01", + "instantiation": "true", + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "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": [ + "260", + "260" + ], + "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 X1 Carbon 0.6 nozzle", + "Bambu Lab X1 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC FR @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL X1C 0.8 nozzle.json index bbaa240d26..bf7f605858 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL X1C 0.8 nozzle.json @@ -1,126 +1,53 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL X1C 0.8 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_02", - "instantiation": "true", - "fan_max_speed": [ - "40" - ], - "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" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "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 X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC FR @BBL X1C 0.8 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_02", + "instantiation": "true", + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "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": [ + "260", + "260" + ], + "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 X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC FR @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL X1C.json index 1a0540d7a3..c30bef59b3 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL X1C.json @@ -1,126 +1,53 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL X1C", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_00", - "instantiation": "true", - "fan_max_speed": [ - "40" - ], - "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" - ], - "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 X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC FR @BBL X1C", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_00", + "instantiation": "true", + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "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": [ + "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 X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC FR @BBL X1E 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL X1E 0.2 nozzle.json index 8711327d5a..d786e82f33 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL X1E 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL X1E 0.2 nozzle.json @@ -1,128 +1,55 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL X1E 0.2 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_11", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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": [ - "260", - "260" - ], - "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 X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC FR @BBL X1E 0.2 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_11", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "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": [ + "260", + "260" + ], + "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 X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC FR @BBL X1E 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL X1E 0.6 nozzle.json index de3a6e75b3..f5545427f1 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL X1E 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL X1E 0.6 nozzle.json @@ -1,128 +1,55 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL X1E 0.6 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_12", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "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 X1E 0.6 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC FR @BBL X1E 0.6 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_12", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "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": [ + "260", + "260" + ], + "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 X1E 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC FR @BBL X1E 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL X1E 0.8 nozzle.json index 8cb2b75c22..050855f467 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL X1E 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL X1E 0.8 nozzle.json @@ -1,128 +1,55 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL X1E 0.8 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_13", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "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 X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC FR @BBL X1E 0.8 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_13", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "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": [ + "260", + "260" + ], + "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 X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC FR @BBL X1E.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL X1E.json index e7cf3e2627..5314f3101a 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL X1E.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL X1E.json @@ -1,128 +1,55 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL X1E", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_10", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "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" - ], - "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 X1E 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC FR @BBL X1E", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_10", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "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": [ + "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 X1E 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC FR @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL X2D 0.4 nozzle.json index e855d956c7..ccdeb880a0 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL X2D 0.4 nozzle.json @@ -1,272 +1,125 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL X2D 0.4 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_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": [ - "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" - ], - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "filament_flow_ratio": [ - "0.94", - "0.94", - "0.94", - "0.94" - ], - "filament_max_volumetric_speed": [ - "18", - "18", - "18", - "18" - ], - "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" - ], - "slow_down_layer_time": [ - "12" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PC FR @BBL X2D 0.4 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_28", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "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": [ + "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", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "280" + ], + "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" + ], + "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_layer_time": [ + "12" + ], + "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 PC FR @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL X2D 0.8 nozzle.json index 305ddb6c5b..5c58c59432 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL X2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL X2D 0.8 nozzle.json @@ -1,272 +1,101 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL X2D 0.8 nozzle", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_40", - "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" - ], - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "filament_flow_ratio": [ - "0.94", - "0.94", - "0.94", - "0.94" - ], - "filament_max_volumetric_speed": [ - "18", - "18", - "18", - "18" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "260" - ], - "nozzle_temperature": [ - "260", - "260", - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270", - "270", - "270" - ], - "slow_down_layer_time": [ - "12" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PC FR @BBL X2D 0.8 nozzle", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_40", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "260" + ], + "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" + ], + "nozzle_temperature": [ + "260", + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_layer_time": [ + "12" + ], + "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 PC FR @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PC FR @BBL X2D.json index b57e2d3411..9dd52a836f 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @BBL X2D.json @@ -1,272 +1,125 @@ { - "type": "filament", - "name": "Bambu PC FR @BBL X2D", - "inherits": "Bambu PC FR @base", - "from": "system", - "setting_id": "GFSC01_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": [ - "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" - ], - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "filament_flow_ratio": [ - "0.94", - "0.94", - "0.94", - "0.94" - ], - "filament_max_volumetric_speed": [ - "18", - "18", - "18", - "18" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "260" - ], - "nozzle_temperature": [ - "260", - "260", - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270", - "270", - "270" - ], - "slow_down_layer_time": [ - "12" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PC FR @BBL X2D", + "inherits": "Bambu PC FR @base", + "from": "system", + "setting_id": "GFSC01_29", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "40" + ], + "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": [ + "18", + "18", + "18", + "18", + "18", + "18" + ], + "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": [ + "260" + ], + "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" + ], + "nozzle_temperature": [ + "260", + "260", + "260", + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270", + "270", + "270" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_layer_time": [ + "12" + ], + "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" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PC FR @base.json b/resources/profiles/BBL/filament/Bambu PC FR @base.json index 0ee463d08f..2f9e91dd67 100644 --- a/resources/profiles/BBL/filament/Bambu PC FR @base.json +++ b/resources/profiles/BBL/filament/Bambu PC FR @base.json @@ -1,23 +1,23 @@ { - "type": "filament", - "name": "Bambu PC FR @base", - "inherits": "fdm_filament_pc", - "from": "system", - "filament_id": "OFg57Nmc", - "instantiation": "false", - "filament_cost": [ - "0" - ], - "filament_density": [ - "1.19" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "impact_strength_z": [ - "8" - ] -} + "type": "filament", + "name": "Bambu PC FR @base", + "inherits": "fdm_filament_pc", + "from": "system", + "filament_id": "OFg57Nmc", + "instantiation": "false", + "filament_cost": [ + "51.99" + ], + "filament_density": [ + "1.19" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "8" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PET-CF @BBL A1.json b/resources/profiles/BBL/filament/Bambu PET-CF @BBL A1.json index c6cae1f9d5..38cf590364 100644 --- a/resources/profiles/BBL/filament/Bambu PET-CF @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PET-CF @BBL A1.json @@ -1,19 +1,49 @@ { - "type": "filament", - "name": "Bambu PET-CF @BBL A1", - "inherits": "Bambu PET-CF @base", - "from": "system", - "setting_id": "GFST01_01", - "instantiation": "true", - "reduce_fan_stop_start_freq": [ - "0" - ], - "slow_down_min_speed": [ - "20" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab A1 0.6 nozzle" - ] -} + "type": "filament", + "name": "Bambu PET-CF @BBL A1", + "inherits": "Bambu PET-CF @base", + "from": "system", + "setting_id": "GFST01_01", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "1" + ], + "filament_flow_ratio": [ + "0.9555" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "filament_overhang_2_4_speed": [ + "35" + ], + "filament_overhang_3_4_speed": [ + "35" + ], + "overhang_fan_speed": [ + "75" + ], + "override_process_overhang_speed": [ + "1" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "slow_down_layer_time": [ + "1" + ], + "slow_down_min_speed": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "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 PET-CF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PET-CF @BBL H2C 0.4 nozzle.json index 622e10d1a1..4633db0021 100644 --- a/resources/profiles/BBL/filament/Bambu PET-CF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PET-CF @BBL H2C 0.4 nozzle.json @@ -1,204 +1,151 @@ { - "type": "filament", - "name": "Bambu PET-CF @BBL H2C 0.4 nozzle", - "inherits": "Bambu PET-CF @base", - "from": "system", - "setting_id": "GFST01_08", - "instantiation": "true", - "chamber_temperatures": [ - "50" - ], - "counter_coef_2": [ - "-0.0004" - ], - "counter_coef_3": [ - "-0.0156" - ], - "counter_limit_max": [ - "-0.015" - ], - "counter_limit_min": [ - "-0.025" - ], - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "5", - "5" - ], - "filament_pre_cooling_temperature_nc": [ - "230", - "230" - ], - "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.0003" - ], - "hole_coef_3": [ - "0.1741" - ], - "hole_limit_max": [ - "0.174" - ], - "hole_limit_min": [ - "0.167" - ], - "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": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "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 PET-CF @BBL H2C 0.4 nozzle", + "inherits": "Bambu PET-CF @base", + "from": "system", + "setting_id": "GFST01_08", + "instantiation": "true", + "chamber_temperatures": [ + "50" + ], + "counter_coef_2": [ + "-0.0004" + ], + "counter_coef_3": [ + "-0.0156" + ], + "counter_limit_max": [ + "-0.015" + ], + "counter_limit_min": [ + "-0.025" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "1" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.9555", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "5", + "5", + "5" + ], + "filament_overhang_2_4_speed": [ + "35", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "35", + "30", + "30" + ], + "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" + ], + "hole_coef_2": [ + "-0.0003" + ], + "hole_coef_3": [ + "0.1741" + ], + "hole_limit_max": [ + "0.174" + ], + "hole_limit_min": [ + "0.167" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "overhang_fan_speed": [ + "75" + ], + "override_process_overhang_speed": [ + "1", + "0", + "0" + ], + "slow_down_layer_time": [ + "1" + ], + "slow_down_min_speed": [ + "35", + "10", + "10" + ], + "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 PET-CF @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PET-CF @BBL H2C.json index ed779934d1..cee2b21e4d 100644 --- a/resources/profiles/BBL/filament/Bambu PET-CF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PET-CF @BBL H2C.json @@ -1,208 +1,155 @@ { - "type": "filament", - "name": "Bambu PET-CF @BBL H2C", - "inherits": "Bambu PET-CF @base", - "from": "system", - "setting_id": "GFST01_09", - "instantiation": "true", - "chamber_temperatures": [ - "50" - ], - "counter_coef_2": [ - "-0.0004" - ], - "counter_coef_3": [ - "-0.0156" - ], - "counter_limit_max": [ - "-0.015" - ], - "counter_limit_min": [ - "-0.025" - ], - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "5", - "5" - ], - "filament_pre_cooling_temperature_nc": [ - "230", - "230" - ], - "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.0003" - ], - "hole_coef_3": [ - "0.1741" - ], - "hole_limit_max": [ - "0.174" - ], - "hole_limit_min": [ - "0.167" - ], - "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": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "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 PET-CF @BBL H2C", + "inherits": "Bambu PET-CF @base", + "from": "system", + "setting_id": "GFST01_09", + "instantiation": "true", + "chamber_temperatures": [ + "50" + ], + "counter_coef_2": [ + "-0.0004" + ], + "counter_coef_3": [ + "-0.0156" + ], + "counter_limit_max": [ + "-0.015" + ], + "counter_limit_min": [ + "-0.025" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "1" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.9555", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "5", + "5", + "5" + ], + "filament_overhang_2_4_speed": [ + "35", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "35", + "30", + "30" + ], + "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_printable": [ + "1" + ], + "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.0003" + ], + "hole_coef_3": [ + "0.1741" + ], + "hole_limit_max": [ + "0.174" + ], + "hole_limit_min": [ + "0.167" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "overhang_fan_speed": [ + "75" + ], + "override_process_overhang_speed": [ + "1", + "0", + "0" + ], + "slow_down_layer_time": [ + "1" + ], + "slow_down_min_speed": [ + "35", + "10", + "10" + ], + "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 PET-CF @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PET-CF @BBL H2D.json index 7d2a224c52..204fcc2b98 100644 --- a/resources/profiles/BBL/filament/Bambu PET-CF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PET-CF @BBL H2D.json @@ -1,154 +1,129 @@ { - "type": "filament", - "name": "Bambu PET-CF @BBL H2D", - "inherits": "Bambu PET-CF @base", - "from": "system", - "setting_id": "GFST01_02", - "instantiation": "true", - "chamber_temperatures": [ - "50" - ], - "counter_coef_2": [ - "0.0075" - ], - "counter_coef_3": [ - "-0.052" - ], - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "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_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" - ], - "hole_coef_2": [ - "-0.012" - ], - "hole_coef_3": [ - "0.35043" - ], - "hole_limit_min": [ - "0.07" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "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": "Bambu PET-CF @BBL H2D", + "inherits": "Bambu PET-CF @base", + "from": "system", + "setting_id": "GFST01_02", + "instantiation": "true", + "chamber_temperatures": [ + "50" + ], + "counter_coef_2": [ + "-0.0004" + ], + "counter_coef_3": [ + "-0.0156" + ], + "counter_limit_max": [ + "-0.015" + ], + "counter_limit_min": [ + "-0.025" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "1" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.9555", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "5", + "8", + "8" + ], + "filament_overhang_2_4_speed": [ + "35", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "35", + "30", + "30" + ], + "filament_prime_volume": [ + "30" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0003" + ], + "hole_coef_3": [ + "0.1741" + ], + "hole_limit_max": [ + "0.174" + ], + "hole_limit_min": [ + "0.167" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "overhang_fan_speed": [ + "75" + ], + "override_process_overhang_speed": [ + "1", + "0", + "0" + ], + "slow_down_layer_time": [ + "1" + ], + "slow_down_min_speed": [ + "35", + "10", + "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/Bambu PET-CF @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PET-CF @BBL H2DP.json index dee0d35351..d6a563e31f 100644 --- a/resources/profiles/BBL/filament/Bambu PET-CF @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PET-CF @BBL H2DP.json @@ -1,154 +1,104 @@ { - "type": "filament", - "name": "Bambu PET-CF @BBL H2DP", - "inherits": "Bambu PET-CF @base", - "from": "system", - "setting_id": "GFST01_05", - "instantiation": "true", - "chamber_temperatures": [ - "50" - ], - "counter_coef_2": [ - "0.0075" - ], - "counter_coef_3": [ - "-0.052" - ], - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "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_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" - ], - "hole_coef_2": [ - "-0.012" - ], - "hole_coef_3": [ - "0.35043" - ], - "hole_limit_min": [ - "0.07" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "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": "Bambu PET-CF @BBL H2DP", + "inherits": "Bambu PET-CF @base", + "from": "system", + "setting_id": "GFST01_05", + "instantiation": "true", + "chamber_temperatures": [ + "50" + ], + "counter_coef_2": [ + "0.0075" + ], + "counter_coef_3": [ + "-0.052" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "1" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "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_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hole_coef_2": [ + "-0.012" + ], + "hole_coef_3": [ + "0.35043" + ], + "hole_limit_min": [ + "0.07" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "overhang_fan_speed": [ + "75" + ], + "override_process_overhang_speed": [ + "1", + "0" + ], + "slow_down_layer_time": [ + "1" + ], + "slow_down_min_speed": [ + "35", + "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/Bambu PET-CF @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PET-CF @BBL H2S.json index 7735a8231c..9eb410e996 100644 --- a/resources/profiles/BBL/filament/Bambu PET-CF @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PET-CF @BBL H2S.json @@ -1,142 +1,139 @@ { - "type": "filament", - "name": "Bambu PET-CF @BBL H2S", - "inherits": "Bambu PET-CF @base", - "from": "system", - "setting_id": "GFST01_04", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "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": [ - "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 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 PET-CF @BBL H2S", + "inherits": "Bambu PET-CF @base", + "from": "system", + "setting_id": "GFST01_04", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0004" + ], + "counter_coef_3": [ + "-0.0156" + ], + "counter_limit_max": [ + "-0.015" + ], + "counter_limit_min": [ + "-0.025" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "1" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.9555", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "5", + "8", + "8" + ], + "filament_overhang_2_4_speed": [ + "35", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "35", + "30", + "30" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0003" + ], + "hole_coef_3": [ + "0.1741" + ], + "hole_limit_max": [ + "0.174" + ], + "hole_limit_min": [ + "0.167" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "overhang_fan_speed": [ + "75" + ], + "override_process_overhang_speed": [ + "1", + "0", + "0" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "1" + ], + "slow_down_min_speed": [ + "35", + "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 PET-CF @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PET-CF @BBL P2S.json index c738120a0d..8d5f30f117 100644 --- a/resources/profiles/BBL/filament/Bambu PET-CF @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PET-CF @BBL P2S.json @@ -1,179 +1,130 @@ { - "type": "filament", - "name": "Bambu PET-CF @BBL P2S", - "inherits": "Bambu PET-CF @base", - "from": "system", - "setting_id": "GFST01_03", - "instantiation": "true", - "chamber_temperatures": [ - "50" - ], - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "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": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "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 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 PET-CF @BBL P2S", + "inherits": "Bambu PET-CF @base", + "from": "system", + "setting_id": "GFST01_03", + "instantiation": "true", + "chamber_temperatures": [ + "50" + ], + "counter_coef_2": [ + "-0.0004" + ], + "counter_coef_3": [ + "-0.0156" + ], + "counter_limit_max": [ + "-0.015" + ], + "counter_limit_min": [ + "-0.025" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "1" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.9555", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "5", + "8", + "8" + ], + "filament_overhang_2_4_speed": [ + "35", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "35", + "30", + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0003" + ], + "hole_coef_3": [ + "0.1741" + ], + "hole_limit_max": [ + "0.174" + ], + "hole_limit_min": [ + "0.167" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "overhang_fan_speed": [ + "75" + ], + "override_process_overhang_speed": [ + "1", + "0", + "0" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "1" + ], + "slow_down_min_speed": [ + "35", + "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 PET-CF @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PET-CF @BBL X1C.json index 646e6412ea..e119b37000 100644 --- a/resources/profiles/BBL/filament/Bambu PET-CF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PET-CF @BBL X1C.json @@ -1,133 +1,84 @@ { - "type": "filament", - "name": "Bambu PET-CF @BBL X1C", - "inherits": "Bambu PET-CF @base", - "from": "system", - "setting_id": "GFST01", - "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 X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "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 P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PET-CF @BBL X1C", + "inherits": "Bambu PET-CF @base", + "from": "system", + "setting_id": "GFST01", + "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 X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "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 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 PET-CF @BBL X1E.json b/resources/profiles/BBL/filament/Bambu PET-CF @BBL X1E.json index 221e74b1a1..2e750018cf 100644 --- a/resources/profiles/BBL/filament/Bambu PET-CF @BBL X1E.json +++ b/resources/profiles/BBL/filament/Bambu PET-CF @BBL X1E.json @@ -1,130 +1,81 @@ { - "type": "filament", - "name": "Bambu PET-CF @BBL X1E", - "inherits": "Bambu PET-CF @base", - "from": "system", - "setting_id": "GFST01_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": [ - "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 X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PET-CF @BBL X1E", + "inherits": "Bambu PET-CF @base", + "from": "system", + "setting_id": "GFST01_00", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "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 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 PET-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PET-CF @BBL X2D 0.4 nozzle.json index ec8b228fbb..55a854c514 100644 --- a/resources/profiles/BBL/filament/Bambu PET-CF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PET-CF @BBL X2D 0.4 nozzle.json @@ -1,311 +1,170 @@ { - "type": "filament", - "name": "Bambu PET-CF @BBL X2D 0.4 nozzle", - "inherits": "Bambu PET-CF @base", - "from": "system", - "setting_id": "GFST01_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", - "3", - "3" - ], - "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": [ - "50" - ], - "counter_coef_2": [ - "-0.0004" - ], - "counter_coef_3": [ - "-0.0156" - ], - "counter_limit_max": [ - "-0.015" - ], - "counter_limit_min": [ - "-0.025" - ], - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_max_speed": [ - "45" - ], - "fan_min_speed": [ - "25" - ], - "filament_extruder_compatibility": [ - "24" - ], - "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": [ - "270" - ], - "hole_coef_2": [ - "-0.0003" - ], - "hole_coef_3": [ - "0.1741" - ], - "hole_limit_max": [ - "0.174" - ], - "hole_limit_min": [ - "0.167" - ], - "nozzle_temperature": [ - "270", - "270", - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270", - "270", - "270" - ], - "overhang_fan_speed": [ - "50" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PET-CF @BBL X2D 0.4 nozzle", + "inherits": "Bambu PET-CF @base", + "from": "system", + "setting_id": "GFST01_06", + "instantiation": "true", + "chamber_temperatures": [ + "50" + ], + "counter_coef_2": [ + "-0.0004" + ], + "counter_coef_3": [ + "-0.0156" + ], + "counter_limit_max": [ + "-0.015" + ], + "counter_limit_min": [ + "-0.025" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "1" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.9555", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "5", + "8", + "8", + "8", + "8", + "8" + ], + "filament_overhang_2_4_speed": [ + "35", + "50", + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "35", + "30", + "30", + "30", + "30", + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "3", + "3", + "3" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "hole_coef_2": [ + "-0.0003" + ], + "hole_coef_3": [ + "0.1741" + ], + "hole_limit_max": [ + "0.174" + ], + "hole_limit_min": [ + "0.167" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270", + "270", + "270" + ], + "overhang_fan_speed": [ + "75" + ], + "override_process_overhang_speed": [ + "1", + "0", + "0", + "0", + "0", + "0" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_layer_time": [ + "1" + ], + "slow_down_min_speed": [ + "35", + "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 PET-CF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PET-CF @BBL X2D.json index f9b90f58ab..277b655bf1 100644 --- a/resources/profiles/BBL/filament/Bambu PET-CF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PET-CF @BBL X2D.json @@ -1,309 +1,163 @@ { - "type": "filament", - "name": "Bambu PET-CF @BBL X2D", - "inherits": "Bambu PET-CF @base", - "from": "system", - "setting_id": "GFST01_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": [ - "50" - ], - "counter_coef_2": [ - "-0.0004" - ], - "counter_coef_3": [ - "-0.0156" - ], - "counter_limit_max": [ - "-0.015" - ], - "counter_limit_min": [ - "-0.025" - ], - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "20" - ], - "filament_extruder_compatibility": [ - "24" - ], - "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": [ - "270" - ], - "hole_coef_2": [ - "-0.0003" - ], - "hole_coef_3": [ - "0.1741" - ], - "hole_limit_max": [ - "0.174" - ], - "hole_limit_min": [ - "0.167" - ], - "nozzle_temperature": [ - "270", - "270", - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270", - "270", - "270" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "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 PET-CF @BBL X2D", + "inherits": "Bambu PET-CF @base", + "from": "system", + "setting_id": "GFST01_07", + "instantiation": "true", + "chamber_temperatures": [ + "50" + ], + "counter_coef_2": [ + "-0.0004" + ], + "counter_coef_3": [ + "-0.0156" + ], + "counter_limit_max": [ + "-0.015" + ], + "counter_limit_min": [ + "-0.025" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "1" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.9555", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "5", + "8", + "8", + "8", + "8", + "8" + ], + "filament_overhang_2_4_speed": [ + "35", + "50", + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "35", + "30", + "30", + "30", + "30", + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "hole_coef_2": [ + "-0.0003" + ], + "hole_coef_3": [ + "0.1741" + ], + "hole_limit_max": [ + "0.174" + ], + "hole_limit_min": [ + "0.167" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270", + "270", + "270" + ], + "overhang_fan_speed": [ + "75" + ], + "override_process_overhang_speed": [ + "1", + "0", + "0", + "0", + "0", + "0" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_layer_time": [ + "1" + ], + "slow_down_min_speed": [ + "35", + "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 PET-CF @base.json b/resources/profiles/BBL/filament/Bambu PET-CF @base.json index c84d423f0e..71a669f723 100644 --- a/resources/profiles/BBL/filament/Bambu PET-CF @base.json +++ b/resources/profiles/BBL/filament/Bambu PET-CF @base.json @@ -1,52 +1,40 @@ { - "type": "filament", - "name": "Bambu PET-CF @base", - "inherits": "fdm_filament_pet", - "from": "system", - "filament_id": "OFHa48An", - "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.", - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "80" - ], - "eng_plate_temp_initial_layer": [ - "80" - ], - "fan_cooling_layer_time": [ - "5" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "10" - ], - "filament_cost": [ - "84.99" - ], - "filament_density": [ - "1.29" - ], - "filament_max_volumetric_speed": [ - "8" - ], - "filament_type": [ - "PET-CF" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "filament_adhesiveness_category": [ - "800" - ], - "filament_dev_chamber_drying_bed_temperature": [ - "90" + "type": "filament", + "name": "Bambu PET-CF @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "OFHa48An", + "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.", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "80" + ], + "eng_plate_temp_initial_layer": [ + "80" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_adhesiveness_category": [ + "800" + ], + "filament_cost": [ + "81.99" + ], + "filament_density": [ + "1.29" ], "filament_dev_ams_drying_ams_limitations": [ "1" @@ -54,67 +42,82 @@ "filament_dev_ams_drying_heat_distortion_temperature": [ "165" ], - "filament_dev_drying_cooling_temperature": [ - "150" - ], "filament_dev_ams_drying_temperature": [ "65", "80", "65", "80" ], + "filament_dev_chamber_drying_bed_temperature": [ + "90" + ], + "filament_dev_drying_cooling_temperature": [ + "150" + ], "filament_dev_drying_softening_temperature": [ "150" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "impact_strength_z": [ - "4.5" - ], - "nozzle_temperature_range_low": [ - "260" - ], - "nozzle_temperature_range_high": [ - "290" - ], - "nozzle_temperature": [ - "270" - ], - "nozzle_temperature_initial_layer": [ - "270" - ], - "overhang_fan_speed": [ - "40" - ], - "overhang_fan_threshold": [ - "0%" - ], - "required_nozzle_HRC": [ - "40" - ], - "supertack_plate_temp": [ - "80" - ], - "supertack_plate_temp_initial_layer": [ - "80" - ], - "slow_down_layer_time": [ - "2" - ], - "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}" - ] -} + "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/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/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/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/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 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/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/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 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 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 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/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 @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/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/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_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/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/BBL/filament/fdm_filament_sbs.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA+ @base.json similarity index 52% rename from resources/profiles/BBL/filament/fdm_filament_sbs.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA+ @base.json index 4aef177e14..ac351462b1 100644 --- a/resources/profiles/BBL/filament/fdm_filament_sbs.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA+ @base.json @@ -1,85 +1,117 @@ { "type": "filament", - "name": "fdm_filament_sbs", - "inherits": "fdm_filament_common", + "name": "PolyTerra PLA+ @base", + "inherits": "fdm_filament_pla", "from": "system", + "filament_id": "OFEjbwqG", "instantiation": "false", - "fan_cooling_layer_time": [ - "100" - ], - "filament_max_volumetric_speed": [ - "23" - ], - "filament_type": [ - "SBS" - ], - "filament_density": [ - "1.02" - ], - "filament_cost": [ - "15" + "bed_type": [ + "Cool Plate" ], "cool_plate_temp": [ - "70" - ], - "eng_plate_temp": [ - "70" - ], - "hot_plate_temp": [ - "70" - ], - "textured_plate_temp": [ - "70" + "60" ], "cool_plate_temp_initial_layer": [ - "70" + "60" + ], + "eng_plate_temp": [ + "60" ], "eng_plate_temp_initial_layer": [ - "70" + "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": [ - "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" + "60" ], "nozzle_temperature": [ - "235" + "230" ], - "temperature_vitrification": [ - "70" - ], - "nozzle_temperature_range_low": [ - "215" + "nozzle_temperature_initial_layer": [ + "230" ], "nozzle_temperature_range_high": [ - "250" + "230" ], - "slow_down_min_speed": [ - "20" + "overhang_fan_speed": [ + "75" ], "slow_down_layer_time": [ - "4" + "5" ], - "additional_cooling_fan_speed": [ - "40" + "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": [ 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 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