Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
879f6b67e9 | ||
|
|
4ccb5648e6 | ||
|
|
aed0164ea1 | ||
|
|
6e055e5d8b | ||
|
|
15b64522a4 | ||
|
|
0030bed519 | ||
|
|
7758332406 | ||
|
|
cc883e458d |
@@ -0,0 +1,146 @@
|
|||||||
|
name: Daily OFL OTA Update
|
||||||
|
|
||||||
|
# This workflow is intended for creating and publishing the OrcaFilamentLibrary (OFL) OPC package to
|
||||||
|
# https://github.com/OrcaSlicer/orcaslicer-profiles, which generates an OTA update.
|
||||||
|
# This cronjob runs daily at 00:00 UTC every day and scans main plus every release/vX.Y.Z branch for
|
||||||
|
# changes to resources/profiles/OrcaFilamentLibrary since that branch's own last successful run. Any
|
||||||
|
# branch with no changes is skipped; each changed branch gets its own post_merge_profiles.yml dispatch.
|
||||||
|
#
|
||||||
|
# OFL has no dedicated FOLDER_MERGERS grant (it isn't merged through the PR merge-bot delegation
|
||||||
|
# scheme), so post_merge_profiles.yml is dispatched with an explicit `vendor` input, which that
|
||||||
|
# workflow trusts and uses to bypass the FOLDER_MERGERS check for this trigger. That same explicit-
|
||||||
|
# vendor-dispatch path is also what makes post_merge_profiles.yml call the OTA auto-publish API after
|
||||||
|
# uploading - see post_merge_profiles.yml for both sides of that contract.
|
||||||
|
#
|
||||||
|
# If at least one branch was dispatched this run, a final step clears OFL's pending-publish
|
||||||
|
# table (POST /api/v1/ota/ofl/pending/clear) - the daily "published everything, reset" signal.
|
||||||
|
# That table is populated only by this pipeline's own auto-publish calls.
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 0 * * *"
|
||||||
|
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
actions: write # list this workflow's past runs and dispatch post_merge_profiles.yml
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
env:
|
||||||
|
VENDOR: OrcaFilamentLibrary
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
daily-job:
|
||||||
|
if: ${{ github.repository == 'OrcaSlicer/OrcaSlicer' }}
|
||||||
|
runs-on: ubuntu-24.04
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v7
|
||||||
|
with:
|
||||||
|
# Full history: the per-branch "since last successful run" check below
|
||||||
|
# needs to look arbitrarily far back if a prior run failed or was skipped.
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Fetch all branches
|
||||||
|
shell: bash
|
||||||
|
run: git fetch origin '+refs/heads/*:refs/remotes/origin/*'
|
||||||
|
|
||||||
|
- name: Scan branches and publish changed OFL profiles
|
||||||
|
id: scan
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
published_any=false
|
||||||
|
|
||||||
|
mapfile -t branches < <(
|
||||||
|
gh api "repos/${{ github.repository }}/branches" --paginate --jq '.[].name' \
|
||||||
|
| grep -E '^(main|release/v[0-9]+\.[0-9]+\.[0-9]+)$' | sort -u
|
||||||
|
)
|
||||||
|
|
||||||
|
for branch in "${branches[@]}"; do
|
||||||
|
echo "::group::$branch"
|
||||||
|
|
||||||
|
# post_merge_profiles.yml's own run history, not this workflow's: this
|
||||||
|
# workflow only ever runs against main (schedule, or workflow_dispatch
|
||||||
|
# --ref main), so its head branch never varies - filtering ITS history
|
||||||
|
# by $branch would never match anything except main. post_merge_profiles.yml
|
||||||
|
# genuinely runs per-branch (this dispatch below sets --ref "$branch"),
|
||||||
|
# so its history is the real per-branch checkpoint. It also means a
|
||||||
|
# failed publish naturally gets retried tomorrow: the checkpoint only
|
||||||
|
# advances on a run that actually succeeded.
|
||||||
|
# --method GET is required, not cosmetic: gh api defaults to POST
|
||||||
|
# whenever -f fields are present unless a method is given
|
||||||
|
# explicitly, and POST on this list-runs endpoint 404s - confirmed
|
||||||
|
# on real Actions infrastructure, not just reasoned about.
|
||||||
|
since="$(gh api --method GET "repos/${{ github.repository }}/actions/workflows/post_merge_profiles.yml/runs" \
|
||||||
|
-f status=success -f branch="$branch" -f per_page=1 \
|
||||||
|
--jq '.workflow_runs[0].run_started_at // empty')"
|
||||||
|
|
||||||
|
if [ -z "$since" ]; then
|
||||||
|
echo "No prior successful run for $branch; treating OFL as changed."
|
||||||
|
changed=true
|
||||||
|
else
|
||||||
|
changed_files="$(git log --since="$since" --name-only --pretty=format: "origin/$branch" -- \
|
||||||
|
resources/profiles/OrcaFilamentLibrary resources/profiles/OrcaFilamentLibrary.json \
|
||||||
|
| sed '/^$/d')"
|
||||||
|
if [ -n "$changed_files" ]; then
|
||||||
|
echo "OFL changed on $branch since $since:"
|
||||||
|
echo "$changed_files"
|
||||||
|
changed=true
|
||||||
|
else
|
||||||
|
echo "No OFL changes on $branch since $since."
|
||||||
|
changed=false
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$changed" = true ]; then
|
||||||
|
# Tolerate a per-branch failure (e.g. a pre-existing release branch
|
||||||
|
# whose post_merge_profiles.yml predates the vendor/auto_publish
|
||||||
|
# inputs) rather than aborting the whole scan under set -e.
|
||||||
|
if gh workflow run post_merge_profiles.yml \
|
||||||
|
--repo "${{ github.repository }}" \
|
||||||
|
--ref "$branch" \
|
||||||
|
-f vendor="$VENDOR" -f auto_publish=true; then
|
||||||
|
published_any=true
|
||||||
|
else
|
||||||
|
echo "::warning::failed to dispatch post_merge_profiles.yml for $branch - its post_merge_profiles.yml at this ref may predate the vendor/auto_publish inputs"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "::endgroup::"
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "published_any=$published_any" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
|
- name: Clear OFL pending queue
|
||||||
|
# Only when this run actually kicked off at least one publish - the
|
||||||
|
# daily reset is scoped to today's real activity, not called on a day
|
||||||
|
# where every branch reported no changes. Note "published_any" reflects
|
||||||
|
# a successful DISPATCH, not a confirmed live publish: gh workflow run
|
||||||
|
# is fire-and-forget, so this workflow never learns whether the
|
||||||
|
# dispatched post_merge_profiles.yml run actually reached its own
|
||||||
|
# auto-publish call. Acceptable since the table is populated only by
|
||||||
|
# our own auto-publish calls, not by anything else.
|
||||||
|
if: steps.scan.outputs.published_any == 'true'
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
OTA_API_BASE_URL: ${{ vars.OTA_API_BASE_URL }}
|
||||||
|
OTA_API_KEY: ${{ secrets.OFL_OTA_PUBLISH_KEY }}
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
[ -n "$OTA_API_BASE_URL" ] || { echo "::error::vars.OTA_API_BASE_URL is not set"; exit 1; }
|
||||||
|
[ -n "$OTA_API_KEY" ] || { echo "::error::secrets.OFL_OTA_PUBLISH_KEY is not set"; exit 1; }
|
||||||
|
|
||||||
|
resp_file="$RUNNER_TEMP/ota-pending-clear-response.json"
|
||||||
|
status="$(curl -sS -o "$resp_file" -w '%{http_code}' -X POST \
|
||||||
|
"${OTA_API_BASE_URL%/}/api/v1/ota/ofl/pending/clear" \
|
||||||
|
-H "Authorization: Bearer $OTA_API_KEY")"
|
||||||
|
body="$(cat "$resp_file")"
|
||||||
|
echo "$body"
|
||||||
|
|
||||||
|
if [ "$status" != "200" ]; then
|
||||||
|
echo "::error::OTA pending-clear call failed with HTTP $status"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
@@ -8,6 +8,19 @@ name: Post-merge profiles
|
|||||||
# only then does it become a live OTA update - this workflow does none of that
|
# only then does it become a live OTA update - this workflow does none of that
|
||||||
# last part (no changelog, no R2, no webhook).
|
# last part (no changelog, no R2, no webhook).
|
||||||
#
|
#
|
||||||
|
# A workflow_dispatch carrying a `vendor` input (e.g. the daily OFL cron - OFL has
|
||||||
|
# no FOLDER_MERGERS grant, since it isn't merged through the PR merge-bot delegation
|
||||||
|
# scheme) publishes that vendor directly and skips the FOLDER_MERGERS check below.
|
||||||
|
# workflow_dispatch is already a trusted, explicit trigger, unlike the automatic
|
||||||
|
# push-diff path the FOLDER_MERGERS check exists to gate.
|
||||||
|
#
|
||||||
|
# Separately, an ordinary push whose diff touches an OrcaFilamentLibrary company
|
||||||
|
# folder (resources/profiles/OrcaFilamentLibrary/filament/<Company>/**) records
|
||||||
|
# that PR as pending via POST /api/v1/ota/ofl/pending, regardless of whether
|
||||||
|
# OrcaFilamentLibrary as a whole is authorized to publish in this same run - a
|
||||||
|
# partner's OTA Manager dashboard should see a merged PR immediately, well
|
||||||
|
# before the daily cron actually builds and publishes it.
|
||||||
|
#
|
||||||
# Asset contract expected by OrcaCloud's release scanner:
|
# Asset contract expected by OrcaCloud's release scanner:
|
||||||
# ^(\d+\.\d+\.\d+)_([^_]+)_(\d+(?:\.\d+){3})_(\d{12})\.zip$
|
# ^(\d+\.\d+\.\d+)_([^_]+)_(\d+(?:\.\d+){3})_(\d{12})\.zip$
|
||||||
# <orca_ver>_<vendor>_<profile_version>_<UTC yyyymmddHHMM>.zip (zip root: <vendor>.opc)
|
# <orca_ver>_<vendor>_<profile_version>_<UTC yyyymmddHHMM>.zip (zip root: <vendor>.opc)
|
||||||
@@ -17,16 +30,39 @@ name: Post-merge profiles
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
|
# once v2.5.0 stable is released, this will be removed, so nightly won't receive OTA updates.
|
||||||
- main
|
- main
|
||||||
- release/*
|
# release/vX.Y.Z point-release branches only, not the release/vX.Y working
|
||||||
|
# branch profile PRs land on first - "v*.*.*" requires two literal dots,
|
||||||
|
# which release/vX.Y (one dot) doesn't have.
|
||||||
|
- release/v*.*.*
|
||||||
paths:
|
paths:
|
||||||
- 'resources/profiles/**'
|
- 'resources/profiles/**'
|
||||||
- '.github/workflows/post_merge_profiles.yml'
|
- '.github/workflows/post_merge_profiles.yml'
|
||||||
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
vendor:
|
||||||
|
description: >-
|
||||||
|
Publish only this vendor, bypassing the FOLDER_MERGERS grant check.
|
||||||
|
For trusted explicit dispatches only (e.g. the OFL nightly cron).
|
||||||
|
Leave empty to fall back to diffing the triggering commit.
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
auto_publish:
|
||||||
|
description: >-
|
||||||
|
After publishing, also call the OTA auto-publish API to go live
|
||||||
|
immediately, skipping the human changelog/Publish step. Separate
|
||||||
|
from `vendor` on purpose: a maintainer can dispatch with just
|
||||||
|
`vendor` set to rebuild/republish an asset without it going live.
|
||||||
|
Only the OFL nightly cron should set this to true.
|
||||||
|
required: false
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
pull-requests: read # commits/{sha}/pulls lookup in the OFL-pending step
|
||||||
|
|
||||||
# One run per branch; let a run finish rather than cancel it, since it publishes.
|
# One run per branch; let a run finish rather than cancel it, since it publishes.
|
||||||
concurrency:
|
concurrency:
|
||||||
@@ -66,8 +102,38 @@ jobs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
FOLDER_MERGERS: ${{ vars.FOLDER_MERGERS }}
|
FOLDER_MERGERS: ${{ vars.FOLDER_MERGERS }}
|
||||||
|
DISPATCH_VENDOR: ${{ github.event_name == 'workflow_dispatch' && inputs.vendor || '' }}
|
||||||
run: |
|
run: |
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
|
# A vendor has a manifest plus either a preset directory or a version
|
||||||
|
# field; this drops non-vendor files such as blacklist.json. Shared by
|
||||||
|
# both the explicit-dispatch path below and the push-diff path further
|
||||||
|
# down, so the definition of "valid vendor" can't drift between them.
|
||||||
|
is_valid_vendor() {
|
||||||
|
local v="$1"
|
||||||
|
local json="resources/profiles/$v.json"
|
||||||
|
[ -f "$json" ] && { [ -d "resources/profiles/$v" ] || jq -e '.version' "$json" >/dev/null 2>&1; }
|
||||||
|
}
|
||||||
|
|
||||||
|
# Explicit vendor dispatch (e.g. the OFL cron): trust the caller and
|
||||||
|
# skip both the git-diff detection and the FOLDER_MERGERS check below.
|
||||||
|
if [ -n "$DISPATCH_VENDOR" ]; then
|
||||||
|
v="$DISPATCH_VENDOR"
|
||||||
|
# Becomes part of the release asset filename and the OTA API's
|
||||||
|
# payload; keep it to the same charset every real vendor name uses.
|
||||||
|
if ! [[ "$v" =~ ^[A-Za-z0-9]+$ ]]; then
|
||||||
|
echo "::error::vendor '$v' must be alphanumeric"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if ! is_valid_vendor "$v"; then
|
||||||
|
echo "::error::vendor '$v' has no resources/profiles/$v.json with a profile directory or version field"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "vendors=$v" >> "$GITHUB_OUTPUT"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
base='${{ github.event.before }}'
|
base='${{ github.event.before }}'
|
||||||
head='${{ github.sha }}'
|
head='${{ github.sha }}'
|
||||||
# Zero SHA (branch created / force push) or manual dispatch: fall back
|
# Zero SHA (branch created / force push) or manual dispatch: fall back
|
||||||
@@ -75,6 +141,10 @@ jobs:
|
|||||||
if [ -z "$base" ] || [ "$base" = "0000000000000000000000000000000000000000" ] || ! git cat-file -e "$base^{commit}" 2>/dev/null; then
|
if [ -z "$base" ] || [ "$base" = "0000000000000000000000000000000000000000" ] || ! git cat-file -e "$base^{commit}" 2>/dev/null; then
|
||||||
base="$head^"
|
base="$head^"
|
||||||
fi
|
fi
|
||||||
|
# Exposed so the OFL-pending step below can reuse this exact diff
|
||||||
|
# range instead of re-deriving it (and drifting from this logic).
|
||||||
|
echo "base=$base" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "head=$head" >> "$GITHUB_OUTPUT"
|
||||||
mapfile -t candidates < <(
|
mapfile -t candidates < <(
|
||||||
git diff --name-only "$base" "$head" -- resources/profiles \
|
git diff --name-only "$base" "$head" -- resources/profiles \
|
||||||
| sed -nE 's#^resources/profiles/([^/]+)/.*#\1#p; s#^resources/profiles/([^/]+)\.json$#\1#p' \
|
| sed -nE 's#^resources/profiles/([^/]+)/.*#\1#p; s#^resources/profiles/([^/]+)\.json$#\1#p' \
|
||||||
@@ -84,10 +154,7 @@ jobs:
|
|||||||
vendors=()
|
vendors=()
|
||||||
for v in "${candidates[@]:-}"; do
|
for v in "${candidates[@]:-}"; do
|
||||||
[ -n "$v" ] || continue
|
[ -n "$v" ] || continue
|
||||||
json="resources/profiles/$v.json"
|
if is_valid_vendor "$v"; then
|
||||||
# A vendor has a manifest plus either a preset directory or a version
|
|
||||||
# field; this drops non-vendor files such as blacklist.json.
|
|
||||||
if [ -f "$json" ] && { [ -d "resources/profiles/$v" ] || jq -e '.version' "$json" >/dev/null 2>&1; }; then
|
|
||||||
vendors+=("$v")
|
vendors+=("$v")
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
@@ -101,6 +168,9 @@ jobs:
|
|||||||
# sibling bundle JSON are covered by at least one FOLDER_MERGERS
|
# sibling bundle JSON are covered by at least one FOLDER_MERGERS
|
||||||
# grant. The account part is intentionally ignored here: this is a
|
# grant. The account part is intentionally ignored here: this is a
|
||||||
# post-merge safety check, not an authorization check for a command.
|
# post-merge safety check, not an authorization check for a command.
|
||||||
|
# An ineligible vendor (e.g. OrcaFilamentLibrary, which has no grant)
|
||||||
|
# is dropped on its own - it never blocks other vendors in the same
|
||||||
|
# push from publishing.
|
||||||
grants=()
|
grants=()
|
||||||
while IFS= read -r raw_line; do
|
while IFS= read -r raw_line; do
|
||||||
line="${raw_line#"${raw_line%%[![:space:]]*}"}"
|
line="${raw_line#"${raw_line%%[![:space:]]*}"}"
|
||||||
@@ -127,23 +197,29 @@ jobs:
|
|||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
authorized=()
|
||||||
unauthorized=()
|
unauthorized=()
|
||||||
for v in "${vendors[@]}"; do
|
for v in "${vendors[@]}"; do
|
||||||
if ! is_granted "resources/profiles/$v" || ! is_granted "resources/profiles/$v.json"; then
|
if is_granted "resources/profiles/$v" && is_granted "resources/profiles/$v.json"; then
|
||||||
|
authorized+=("$v")
|
||||||
|
else
|
||||||
unauthorized+=("$v")
|
unauthorized+=("$v")
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ "${#unauthorized[@]}" -ne 0 ]; then
|
if [ "${#unauthorized[@]}" -ne 0 ]; then
|
||||||
echo "vendors=" >> "$GITHUB_OUTPUT"
|
echo "::warning::skipping vendor(s) with no FOLDER_MERGERS grant (no asset built or published for them this run): ${unauthorized[*]}"
|
||||||
exit 0
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "vendors=${vendors[*]}" >> "$GITHUB_OUTPUT"
|
echo "vendors=${authorized[*]}" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
- name: Resolve Orca version
|
- name: Resolve Orca version
|
||||||
id: orca
|
id: orca
|
||||||
if: steps.vendors.outputs.vendors != ''
|
# Unconditional: needed both by the vendor-publish pipeline below (only
|
||||||
|
# when vendors is non-empty) and by the OFL-pending step at the end
|
||||||
|
# (which runs whenever OFL itself changed, even if vendors ends up
|
||||||
|
# empty because OFL has no FOLDER_MERGERS grant). Cheap and harmless
|
||||||
|
# to always resolve - version.inc is present on every commit.
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
@@ -242,3 +318,132 @@ jobs:
|
|||||||
echo "### Published to \`$repo\` release \`$RELEASE_TAG\`"
|
echo "### Published to \`$repo\` release \`$RELEASE_TAG\`"
|
||||||
for f in "$ASSET_DIR"/*.zip; do echo "- \`$(basename "$f")\`"; done
|
for f in "$ASSET_DIR"/*.zip; do echo "- \`$(basename "$f")\`"; done
|
||||||
} >> "$GITHUB_STEP_SUMMARY"
|
} >> "$GITHUB_STEP_SUMMARY"
|
||||||
|
|
||||||
|
- name: Notify OTA auto-publish
|
||||||
|
# Gated on auto_publish specifically, not just "vendor was dispatched":
|
||||||
|
# a maintainer manually dispatching with vendor=OrcaFilamentLibrary (e.g.
|
||||||
|
# to rebuild/republish an asset while debugging) must not silently go
|
||||||
|
# live. Only a caller that explicitly opts in with auto_publish=true
|
||||||
|
# (the OFL nightly cron) skips the human changelog/Publish step.
|
||||||
|
if: >-
|
||||||
|
steps.vendors.outputs.vendors != '' && github.event_name == 'workflow_dispatch'
|
||||||
|
&& (inputs.auto_publish == true || inputs.auto_publish == 'true')
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
OTA_API_BASE_URL: ${{ vars.OTA_API_BASE_URL }}
|
||||||
|
OTA_API_KEY: ${{ secrets.OFL_OTA_PUBLISH_KEY }}
|
||||||
|
ASSET_DIR: ${{ steps.pkg.outputs.dir }}
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
[ -n "$OTA_API_BASE_URL" ] || { echo "::error::vars.OTA_API_BASE_URL is not set"; exit 1; }
|
||||||
|
[ -n "$OTA_API_KEY" ] || { echo "::error::secrets.OFL_OTA_PUBLISH_KEY is not set"; exit 1; }
|
||||||
|
|
||||||
|
mapfile -t zip_files < <(cd "$ASSET_DIR" && ls -1 *.zip)
|
||||||
|
filenames_json="$(printf '%s\n' "${zip_files[@]}" | jq -R . | jq -s .)"
|
||||||
|
payload="$(jq -n --argjson filenames "$filenames_json" '{filenames: $filenames}')"
|
||||||
|
|
||||||
|
resp_file="$RUNNER_TEMP/ota-auto-publish-response.json"
|
||||||
|
status="$(curl -sS -o "$resp_file" -w '%{http_code}' -X POST \
|
||||||
|
"${OTA_API_BASE_URL%/}/api/v1/ota/auto-publish" \
|
||||||
|
-H "Authorization: Bearer $OTA_API_KEY" \
|
||||||
|
-H 'Content-Type: application/json' \
|
||||||
|
-d "$payload")"
|
||||||
|
body="$(cat "$resp_file")"
|
||||||
|
echo "$body"
|
||||||
|
|
||||||
|
if [ "$status" != "200" ]; then
|
||||||
|
echo "::error::OTA auto-publish call failed with HTTP $status"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# A 200 can still carry per-file "error" results (e.g. NOT_FOUND); the
|
||||||
|
# asset is already safely published to the profiles release above, but
|
||||||
|
# it never went live, so treat that as a failure worth surfacing loudly.
|
||||||
|
error_count="$(jq '[.results[] | select(.status == "error")] | length' <<< "$body")"
|
||||||
|
if [ "$error_count" != "0" ]; then
|
||||||
|
jq -r '.results[] | select(.status == "error") | "::error::\(.filename): \(.code) - \(.message)"' <<< "$body"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Record OFL pending changes
|
||||||
|
# A real merge, never the cron's explicit-vendor dispatch (that's
|
||||||
|
# automation publishing, not a new merge to report). This covers two
|
||||||
|
# trigger shapes: an ordinary push, and a vendor-less workflow_dispatch
|
||||||
|
# - the latter is exactly what pr-merge-bot.yml's re-dispatch after a
|
||||||
|
# successful /bot merge looks like (a GITHUB_TOKEN-authored merge fires
|
||||||
|
# no push event at all, which is why that re-dispatch exists). Both
|
||||||
|
# land in the same diff-fallback path in "Resolve changed vendors", so
|
||||||
|
# base/head/orca_ver are already correctly populated either way - only
|
||||||
|
# this condition needs widening.
|
||||||
|
# Placed last in the job on purpose: a failure here must never block
|
||||||
|
# the vendor-publish pipeline above, which a step failing earlier in
|
||||||
|
# the job would do (subsequent steps without always() get skipped).
|
||||||
|
if: >-
|
||||||
|
github.event_name == 'push' ||
|
||||||
|
(github.event_name == 'workflow_dispatch' && !inputs.vendor)
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
OTA_API_BASE_URL: ${{ vars.OTA_API_BASE_URL }}
|
||||||
|
OTA_API_KEY: ${{ secrets.OFL_OTA_PUBLISH_KEY }}
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
base='${{ steps.vendors.outputs.base }}'
|
||||||
|
head='${{ steps.vendors.outputs.head }}'
|
||||||
|
orca_ver='${{ steps.orca.outputs.orca_ver }}'
|
||||||
|
|
||||||
|
# Only real vendor subdirectories under filament/, e.g.
|
||||||
|
# .../filament/Qidi/x.json -> "Qidi". This naturally excludes loose
|
||||||
|
# top-level files (.../filament/Generic PLA @System.json - no further
|
||||||
|
# slash to match) and is further filtered below to drop "base", the
|
||||||
|
# shared @base/@System inheritance folder, not a partner company.
|
||||||
|
mapfile -t ofl_companies < <(
|
||||||
|
git diff --name-only "$base" "$head" -- resources/profiles/OrcaFilamentLibrary/filament \
|
||||||
|
| sed -nE 's#^resources/profiles/OrcaFilamentLibrary/filament/([^/]+)/.*#\1#p' \
|
||||||
|
| grep -vx 'base' \
|
||||||
|
| sort -u
|
||||||
|
)
|
||||||
|
|
||||||
|
if [ "${#ofl_companies[@]}" -eq 0 ]; then
|
||||||
|
echo "No OFL company folders changed in this push."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
[ -n "$OTA_API_BASE_URL" ] || { echo "::error::vars.OTA_API_BASE_URL is not set"; exit 1; }
|
||||||
|
[ -n "$OTA_API_KEY" ] || { echo "::error::secrets.OFL_OTA_PUBLISH_KEY is not set"; exit 1; }
|
||||||
|
|
||||||
|
# The head commit's own merged PR, not a per-commit walk: this
|
||||||
|
# assumes the ordinary one-PR-per-push shape every other merge path
|
||||||
|
# in this repo already assumes (pr-merge-bot.yml's re-dispatch logic
|
||||||
|
# does the same). A merge commit's parents don't matter here - this
|
||||||
|
# API call works the same regardless of merge strategy.
|
||||||
|
pr_json="$(gh api "repos/${{ github.repository }}/commits/$head/pulls" \
|
||||||
|
--jq '[.[] | select(.merged_at != null)] | sort_by(.merged_at) | last // empty')"
|
||||||
|
|
||||||
|
if [ -z "$pr_json" ]; then
|
||||||
|
echo "::warning::push $head touches OFL compan(y/ies) (${ofl_companies[*]}) but has no associated merged PR; skipping pending record(s)"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
pr_number="$(jq -r '.number' <<< "$pr_json")"
|
||||||
|
pr_url="$(jq -r '.html_url' <<< "$pr_json")"
|
||||||
|
pr_title="$(jq -r '.title' <<< "$pr_json")"
|
||||||
|
|
||||||
|
for company in "${ofl_companies[@]}"; do
|
||||||
|
payload="$(jq -n --arg vendor "$company" --arg ver "$orca_ver" --argjson pr "$pr_number" \
|
||||||
|
--arg url "$pr_url" --arg title "$pr_title" \
|
||||||
|
'{vendor: $vendor, orcaSlicerVersion: $ver, prNumber: $pr, prUrl: $url, prTitle: $title}')"
|
||||||
|
|
||||||
|
resp_file="$RUNNER_TEMP/ofl-pending-$company.json"
|
||||||
|
status="$(curl -sS -o "$resp_file" -w '%{http_code}' -X POST \
|
||||||
|
"${OTA_API_BASE_URL%/}/api/v1/ota/ofl/pending" \
|
||||||
|
-H "Authorization: Bearer $OTA_API_KEY" \
|
||||||
|
-H 'Content-Type: application/json' \
|
||||||
|
-d "$payload")"
|
||||||
|
body="$(cat "$resp_file")"
|
||||||
|
echo "$body"
|
||||||
|
|
||||||
|
if [ "$status" != "200" ]; then
|
||||||
|
echo "::error::OFL pending record failed for vendor=$company (PR #$pr_number): HTTP $status"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|||||||
@@ -826,37 +826,6 @@ find_package(OpenSSL REQUIRED)
|
|||||||
find_package(CURL REQUIRED)
|
find_package(CURL REQUIRED)
|
||||||
find_package(Freetype REQUIRED)
|
find_package(Freetype REQUIRED)
|
||||||
|
|
||||||
if (SLIC3R_GUI)
|
|
||||||
# LibDataChannel's installed export references its bundled dependencies,
|
|
||||||
# but does not install their CMake targets. Recreate those targets from
|
|
||||||
# the same dependency prefix before loading the LibDataChannel config.
|
|
||||||
if (NOT TARGET Usrsctp::usrsctp)
|
|
||||||
find_library(_ORCA_USRSCTP_LIBRARY NAMES usrsctp
|
|
||||||
PATHS "${CMAKE_PREFIX_PATH}/lib" NO_DEFAULT_PATH)
|
|
||||||
if (_ORCA_USRSCTP_LIBRARY)
|
|
||||||
add_library(Usrsctp::usrsctp UNKNOWN IMPORTED GLOBAL)
|
|
||||||
set_target_properties(Usrsctp::usrsctp PROPERTIES
|
|
||||||
IMPORTED_LOCATION "${_ORCA_USRSCTP_LIBRARY}"
|
|
||||||
IMPORTED_LINK_INTERFACE_LANGUAGES C
|
|
||||||
INTERFACE_LINK_LIBRARIES "Threads::Threads")
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if (NOT TARGET LibJuice::LibJuice)
|
|
||||||
find_library(_ORCA_LIBJUICE_LIBRARY NAMES juice
|
|
||||||
PATHS "${CMAKE_PREFIX_PATH}/lib" NO_DEFAULT_PATH)
|
|
||||||
if (_ORCA_LIBJUICE_LIBRARY)
|
|
||||||
add_library(LibJuice::LibJuice UNKNOWN IMPORTED GLOBAL)
|
|
||||||
set_target_properties(LibJuice::LibJuice PROPERTIES
|
|
||||||
IMPORTED_LOCATION "${_ORCA_LIBJUICE_LIBRARY}"
|
|
||||||
IMPORTED_LINK_INTERFACE_LANGUAGES C
|
|
||||||
INTERFACE_LINK_LIBRARIES "Threads::Threads")
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
find_package(LibDataChannel CONFIG REQUIRED)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
|
|
||||||
add_library(libcurl INTERFACE)
|
add_library(libcurl INTERFACE)
|
||||||
target_link_libraries(libcurl INTERFACE CURL::libcurl)
|
target_link_libraries(libcurl INTERFACE CURL::libcurl)
|
||||||
@@ -1137,7 +1106,6 @@ function(orcaslicer_copy_dlls target config postfix output_dlls)
|
|||||||
endif ()
|
endif ()
|
||||||
file(COPY ${_occt_dlls}
|
file(COPY ${_occt_dlls}
|
||||||
${CMAKE_PREFIX_PATH}/bin/freetype.dll
|
${CMAKE_PREFIX_PATH}/bin/freetype.dll
|
||||||
${CMAKE_PREFIX_PATH}/bin/avformat-61.dll
|
|
||||||
${CMAKE_PREFIX_PATH}/bin/avcodec-61.dll
|
${CMAKE_PREFIX_PATH}/bin/avcodec-61.dll
|
||||||
${CMAKE_PREFIX_PATH}/bin/swresample-5.dll
|
${CMAKE_PREFIX_PATH}/bin/swresample-5.dll
|
||||||
${CMAKE_PREFIX_PATH}/bin/swscale-8.dll
|
${CMAKE_PREFIX_PATH}/bin/swscale-8.dll
|
||||||
@@ -1150,7 +1118,6 @@ function(orcaslicer_copy_dlls target config postfix output_dlls)
|
|||||||
${_out_dir}/WebView2Loader.dll
|
${_out_dir}/WebView2Loader.dll
|
||||||
|
|
||||||
${_out_dir}/freetype.dll
|
${_out_dir}/freetype.dll
|
||||||
${_out_dir}/avformat-61.dll
|
|
||||||
${_out_dir}/avcodec-61.dll
|
${_out_dir}/avcodec-61.dll
|
||||||
${_out_dir}/swresample-5.dll
|
${_out_dir}/swresample-5.dll
|
||||||
${_out_dir}/swscale-8.dll
|
${_out_dir}/swscale-8.dll
|
||||||
@@ -1174,10 +1141,7 @@ function(orcaslicer_copy_sos target config postfix output_sos)
|
|||||||
set(_out_dir "${CMAKE_CURRENT_BINARY_DIR}")
|
set(_out_dir "${CMAKE_CURRENT_BINARY_DIR}")
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
file(COPY ${CMAKE_PREFIX_PATH}/lib/libavformat.so
|
file(COPY ${CMAKE_PREFIX_PATH}/lib/libavcodec.so
|
||||||
${CMAKE_PREFIX_PATH}/lib/libavformat.so.61
|
|
||||||
${CMAKE_PREFIX_PATH}/lib/libavformat.so.61.1.100
|
|
||||||
${CMAKE_PREFIX_PATH}/lib/libavcodec.so
|
|
||||||
${CMAKE_PREFIX_PATH}/lib/libavcodec.so.61
|
${CMAKE_PREFIX_PATH}/lib/libavcodec.so.61
|
||||||
${CMAKE_PREFIX_PATH}/lib/libavcodec.so.61.3.100
|
${CMAKE_PREFIX_PATH}/lib/libavcodec.so.61.3.100
|
||||||
${CMAKE_PREFIX_PATH}/lib/libavutil.so
|
${CMAKE_PREFIX_PATH}/lib/libavutil.so
|
||||||
@@ -1192,9 +1156,6 @@ function(orcaslicer_copy_sos target config postfix output_sos)
|
|||||||
DESTINATION ${_out_dir})
|
DESTINATION ${_out_dir})
|
||||||
|
|
||||||
set(${output_sos}
|
set(${output_sos}
|
||||||
${_out_dir}/libavformat.so
|
|
||||||
${_out_dir}/libavformat.so.61
|
|
||||||
${_out_dir}/libavformat.so.61.1.100
|
|
||||||
${_out_dir}/libavcodec.so
|
${_out_dir}/libavcodec.so
|
||||||
${_out_dir}/libavcodec.so.61
|
${_out_dir}/libavcodec.so.61
|
||||||
${_out_dir}/libavcodec.so.61.3.100
|
${_out_dir}/libavcodec.so.61.3.100
|
||||||
@@ -1324,8 +1285,6 @@ endif ()
|
|||||||
|
|
||||||
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||||
set(LIBRARY_FILES
|
set(LIBRARY_FILES
|
||||||
${LIBDIR_BIN}/libavformat.so.61
|
|
||||||
${LIBDIR_BIN}/libavformat.so.61.1.100
|
|
||||||
${LIBDIR_BIN}/libavcodec.so.61
|
${LIBDIR_BIN}/libavcodec.so.61
|
||||||
${LIBDIR_BIN}/libavcodec.so.61.3.100
|
${LIBDIR_BIN}/libavcodec.so.61.3.100
|
||||||
${LIBDIR_BIN}/libavutil.so.59
|
${LIBDIR_BIN}/libavutil.so.59
|
||||||
|
|||||||
@@ -156,7 +156,7 @@ if (NOT _is_multi AND NOT CMAKE_BUILD_TYPE)
|
|||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
function(orcaslicer_add_cmake_project projectname)
|
function(orcaslicer_add_cmake_project projectname)
|
||||||
cmake_parse_arguments(P_ARGS "FORWARD_CONFIG" "INSTALL_DIR;BUILD_COMMAND;INSTALL_COMMAND;SOURCE_DIR" "CMAKE_ARGS" ${ARGN})
|
cmake_parse_arguments(P_ARGS "FORWARD_CONFIG" "INSTALL_DIR;BUILD_COMMAND;INSTALL_COMMAND" "CMAKE_ARGS" ${ARGN})
|
||||||
|
|
||||||
# MSVC is true for clang-cl as well, so the sub-build toolchain has to key on the
|
# MSVC is true for clang-cl as well, so the sub-build toolchain has to key on the
|
||||||
# generator. A non-Visual-Studio superbuild passes its own generator down, and with
|
# generator. A non-Visual-Studio superbuild passes its own generator down, and with
|
||||||
@@ -202,18 +202,12 @@ function(orcaslicer_add_cmake_project projectname)
|
|||||||
set(_build_j "-j${NPROC}")
|
set(_build_j "-j${NPROC}")
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
set(_source_dir_arg "")
|
|
||||||
if (P_ARGS_SOURCE_DIR)
|
|
||||||
set(_source_dir_arg SOURCE_DIR ${P_ARGS_SOURCE_DIR})
|
|
||||||
endif ()
|
|
||||||
|
|
||||||
if (NOT IS_CROSS_COMPILE OR NOT APPLE)
|
if (NOT IS_CROSS_COMPILE OR NOT APPLE)
|
||||||
ExternalProject_Add(
|
ExternalProject_Add(
|
||||||
dep_${projectname}
|
dep_${projectname}
|
||||||
EXCLUDE_FROM_ALL ON
|
EXCLUDE_FROM_ALL ON
|
||||||
INSTALL_DIR ${DESTDIR}
|
INSTALL_DIR ${DESTDIR}
|
||||||
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/${projectname}
|
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/${projectname}
|
||||||
${_source_dir_arg}
|
|
||||||
${_gen}
|
${_gen}
|
||||||
CMAKE_ARGS
|
CMAKE_ARGS
|
||||||
-DCMAKE_POLICY_VERSION_MINIMUM=3.5
|
-DCMAKE_POLICY_VERSION_MINIMUM=3.5
|
||||||
@@ -246,14 +240,12 @@ if (NOT IS_CROSS_COMPILE OR NOT APPLE)
|
|||||||
# note for future devs: shared libs may actually create a size reduction
|
# note for future devs: shared libs may actually create a size reduction
|
||||||
# but orcaslicer_deps tends to get really funny regarding linking after that (notably boost)
|
# but orcaslicer_deps tends to get really funny regarding linking after that (notably boost)
|
||||||
# so, as much as I would like to use that, it's not happening
|
# so, as much as I would like to use that, it's not happening
|
||||||
if (NOT P_ARGS_SOURCE_DIR)
|
|
||||||
ExternalProject_Add_Step(dep_${projectname} free_download_space
|
ExternalProject_Add_Step(dep_${projectname} free_download_space
|
||||||
DEPENDEES download # do after download
|
DEPENDEES download # do after download
|
||||||
COMMENT "Freeing Space: Removing source archive"
|
COMMENT "Freeing Space: Removing source archive"
|
||||||
WORKING_DIRECTORY ${DEP_DOWNLOAD_DIR}
|
WORKING_DIRECTORY ${DEP_DOWNLOAD_DIR}
|
||||||
COMMAND ${CMAKE_COMMAND} -E rm -rf ${projectname}
|
COMMAND ${CMAKE_COMMAND} -E rm -r ${projectname}
|
||||||
)
|
)
|
||||||
endif ()
|
|
||||||
ExternalProject_Add_Step(dep_${projectname} free_build_space
|
ExternalProject_Add_Step(dep_${projectname} free_build_space
|
||||||
DEPENDEES install # do after install
|
DEPENDEES install # do after install
|
||||||
COMMENT "Freeing Space: Removing source and build files"
|
COMMENT "Freeing Space: Removing source and build files"
|
||||||
@@ -267,7 +259,6 @@ else()
|
|||||||
EXCLUDE_FROM_ALL ON
|
EXCLUDE_FROM_ALL ON
|
||||||
INSTALL_DIR ${DESTDIR}
|
INSTALL_DIR ${DESTDIR}
|
||||||
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/${projectname}
|
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/${projectname}
|
||||||
${_source_dir_arg}
|
|
||||||
${_gen}
|
${_gen}
|
||||||
CMAKE_ARGS
|
CMAKE_ARGS
|
||||||
-DCMAKE_POLICY_VERSION_MINIMUM=3.5
|
-DCMAKE_POLICY_VERSION_MINIMUM=3.5
|
||||||
@@ -395,6 +386,10 @@ include(libnoise/libnoise.cmake)
|
|||||||
|
|
||||||
include(Draco/Draco.cmake)
|
include(Draco/Draco.cmake)
|
||||||
|
|
||||||
|
include(FFMPEG/FFMPEG.cmake)
|
||||||
|
include(Assimp/Assimp.cmake)
|
||||||
|
|
||||||
|
|
||||||
# I *think* 1.1 is used for *just* md5 hashing?
|
# I *think* 1.1 is used for *just* md5 hashing?
|
||||||
# 3.1 has everything in the right place, but the md5 funcs used are deprecated
|
# 3.1 has everything in the right place, but the md5 funcs used are deprecated
|
||||||
# a grep across the repo shows it is used for other things
|
# a grep across the repo shows it is used for other things
|
||||||
@@ -405,12 +400,6 @@ if(NOT OPENSSL_FOUND)
|
|||||||
set(OPENSSL_PKG dep_OpenSSL)
|
set(OPENSSL_PKG dep_OpenSSL)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
include(FFMPEG/FFMPEG.cmake)
|
|
||||||
include(Assimp/Assimp.cmake)
|
|
||||||
|
|
||||||
include(DataChannel/DataChannel.cmake)
|
|
||||||
set(DATACHANNEL_PKG dep_DataChannel)
|
|
||||||
|
|
||||||
# we don't want to load a "wrong" openssl when loading curl
|
# we don't want to load a "wrong" openssl when loading curl
|
||||||
# so, just don't even bother
|
# so, just don't even bother
|
||||||
# ...i think this is how it works? change if wrong
|
# ...i think this is how it works? change if wrong
|
||||||
@@ -484,7 +473,6 @@ set(_dep_list
|
|||||||
dep_wxInspector
|
dep_wxInspector
|
||||||
dep_FFMPEG
|
dep_FFMPEG
|
||||||
dep_Assimp
|
dep_Assimp
|
||||||
${DATACHANNEL_PKG}
|
|
||||||
)
|
)
|
||||||
|
|
||||||
if (MSVC)
|
if (MSVC)
|
||||||
|
|||||||
@@ -1,37 +0,0 @@
|
|||||||
# libdatachannel is the native ICE/DTLS/SCTP implementation used by the
|
|
||||||
# GUI WebRTC camera controller. Keep the source revision fixed: the signaling
|
|
||||||
# protocol is evolving independently of this transport dependency.
|
|
||||||
#
|
|
||||||
# It vendors plog, usrsctp and libjuice as git submodules, which a plain
|
|
||||||
# GitHub tag tarball does not include. The flatpak sandbox has no network
|
|
||||||
# access during the build, so there the manifest itself clones the repo
|
|
||||||
# (submodules and all) into the dependency download directory before the
|
|
||||||
# sandbox closes. ExternalProject_Add is pointed at that existing checkout
|
|
||||||
# instead of being given its own network-dependent download method.
|
|
||||||
if (FLATPAK)
|
|
||||||
set(_datachannel_source
|
|
||||||
SOURCE_DIR ${DEP_DOWNLOAD_DIR}/DataChannel
|
|
||||||
)
|
|
||||||
else()
|
|
||||||
set(_datachannel_source
|
|
||||||
GIT_REPOSITORY https://github.com/paullouisageneau/libdatachannel.git
|
|
||||||
GIT_TAG v0.24.5
|
|
||||||
GIT_SHALLOW ON
|
|
||||||
GIT_SUBMODULES_RECURSE ON
|
|
||||||
)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
orcaslicer_add_cmake_project(DataChannel
|
|
||||||
DEPENDS ${OPENSSL_PKG}
|
|
||||||
CMAKE_ARGS
|
|
||||||
-DNO_EXAMPLES=ON
|
|
||||||
-DNO_TESTS=ON
|
|
||||||
-DNO_WEBSOCKET=ON
|
|
||||||
-DNO_MEDIA=ON
|
|
||||||
-DUSE_NICE=OFF
|
|
||||||
-DUSE_SYSTEM_JUICE=OFF
|
|
||||||
-DUSE_SYSTEM_USRSCTP=OFF
|
|
||||||
-DOPENSSL_ROOT_DIR:PATH=${DESTDIR}
|
|
||||||
-DOPENSSL_USE_STATIC_LIBS=ON
|
|
||||||
${_datachannel_source}
|
|
||||||
)
|
|
||||||
@@ -1,26 +1,14 @@
|
|||||||
set(_conf_cmd ./configure)
|
set(_conf_cmd ./configure)
|
||||||
|
|
||||||
set(_ffmpeg_depends)
|
|
||||||
set(_ffmpeg_configure_command ${_conf_cmd})
|
|
||||||
if (TARGET dep_OpenSSL)
|
|
||||||
set(_ffmpeg_depends DEPENDS dep_OpenSSL)
|
|
||||||
set(_ffmpeg_configure_command
|
|
||||||
${CMAKE_COMMAND} -E env
|
|
||||||
"PKG_CONFIG_PATH=${DESTDIR}/lib/pkgconfig:$ENV{PKG_CONFIG_PATH}"
|
|
||||||
${_conf_cmd}
|
|
||||||
)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if (MSVC)
|
if (MSVC)
|
||||||
set(_source_dir "${CMAKE_BINARY_DIR}/dep_FFMPEG-prefix/src/dep_FFMPEG")
|
set(_source_dir "${CMAKE_BINARY_DIR}/dep_FFMPEG-prefix/src/dep_FFMPEG")
|
||||||
|
|
||||||
set(PREBUILD_URL_arm64 "https://github.com/Noisyfox/FFmpeg-Builds-Orca/releases/download/autobuild-2026-09-18-16-50/ffmpeg-n7.0.3-33-g887d4b4919-winarm64-orca-shared-7.0.zip")
|
set(PREBUILD_URL_arm64 "https://github.com/Noisyfox/FFmpeg-Builds-Orca/releases/download/autobuild-2026-07-17-14-28/ffmpeg-n7.0.3-31-g9b6ffd74b5-winarm64-orca-shared-7.0.zip")
|
||||||
set(PREBUILD_HASH_arm64 "da480cbb39680056de824c57ec4dc3bd577b479ebbc310ff1f9dc55cf014b4c1")
|
set(PREBUILD_HASH_arm64 "12f4140279f2f8469885e1b5b2e8be9d788882914c21523cacd56989f3548054")
|
||||||
set(PREBUILD_URL_x64 "https://github.com/Noisyfox/FFmpeg-Builds-Orca/releases/download/autobuild-2026-09-18-16-50/ffmpeg-n7.0.3-33-g887d4b4919-win64-orca-shared-7.0.zip")
|
set(PREBUILD_URL_x64 "https://github.com/Noisyfox/FFmpeg-Builds-Orca/releases/download/autobuild-2026-07-17-14-28/ffmpeg-n7.0.3-31-g9b6ffd74b5-win64-orca-shared-7.0.zip")
|
||||||
set(PREBUILD_HASH_x64 "85da19daf198f5548259d8aabb349db84997a3f6e6886d8d7764114add9c6dae")
|
set(PREBUILD_HASH_x64 "e65916020ddb9ef84b2666dfbcbfc9b1d67f69d15b4a66db53754637bf2d498c")
|
||||||
|
|
||||||
ExternalProject_Add(dep_FFMPEG
|
ExternalProject_Add(dep_FFMPEG
|
||||||
${_ffmpeg_depends}
|
|
||||||
URL ${PREBUILD_URL_${DEPS_ARCH}}
|
URL ${PREBUILD_URL_${DEPS_ARCH}}
|
||||||
URL_HASH SHA256=${PREBUILD_HASH_${DEPS_ARCH}}
|
URL_HASH SHA256=${PREBUILD_HASH_${DEPS_ARCH}}
|
||||||
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/FFMPEG
|
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/FFMPEG
|
||||||
@@ -33,8 +21,6 @@ if (MSVC)
|
|||||||
)
|
)
|
||||||
|
|
||||||
else ()
|
else ()
|
||||||
set(_openssl_cmd --enable-openssl)
|
|
||||||
|
|
||||||
if (APPLE)
|
if (APPLE)
|
||||||
set(_minos_cmd
|
set(_minos_cmd
|
||||||
"--extra-cflags=-mmacosx-version-min=${DEP_OSX_TARGET}"
|
"--extra-cflags=-mmacosx-version-min=${DEP_OSX_TARGET}"
|
||||||
@@ -66,11 +52,10 @@ else ()
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
ExternalProject_Add(dep_FFMPEG
|
ExternalProject_Add(dep_FFMPEG
|
||||||
${_ffmpeg_depends}
|
|
||||||
URL https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n7.0.3.tar.gz
|
URL https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n7.0.3.tar.gz
|
||||||
URL_HASH SHA256=DEEDCABE339165214A3637DF4C86A507AEF0D793CF8774FF68735F4737E8DDBC
|
URL_HASH SHA256=DEEDCABE339165214A3637DF4C86A507AEF0D793CF8774FF68735F4737E8DDBC
|
||||||
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/FFMPEG
|
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/FFMPEG
|
||||||
CONFIGURE_COMMAND ${_ffmpeg_configure_command}
|
CONFIGURE_COMMAND ${_conf_cmd}
|
||||||
${_cross_cmd}
|
${_cross_cmd}
|
||||||
${_pic_cmd}
|
${_pic_cmd}
|
||||||
${_arch_cmd}
|
${_arch_cmd}
|
||||||
@@ -78,21 +63,20 @@ else ()
|
|||||||
"--prefix=${DESTDIR}"
|
"--prefix=${DESTDIR}"
|
||||||
${_link_cmd}
|
${_link_cmd}
|
||||||
${_minos_cmd}
|
${_minos_cmd}
|
||||||
${_openssl_cmd}
|
|
||||||
--disable-doc
|
--disable-doc
|
||||||
--enable-small
|
--enable-small
|
||||||
--disable-outdevs
|
--disable-outdevs
|
||||||
--disable-filters
|
--disable-filters
|
||||||
--enable-filter=*null*,afade,*fifo,*format,*resample,aeval,allrgb,allyuv,atempo,pan,*bars,color,*key,crop,draw*,eq*,framerate,*_qsv,*_vaapi,*v4l2*,hw*,scale,volume,test*
|
--enable-filter=*null*,afade,*fifo,*format,*resample,aeval,allrgb,allyuv,atempo,pan,*bars,color,*key,crop,draw*,eq*,framerate,*_qsv,*_vaapi,*v4l2*,hw*,scale,volume,test*
|
||||||
--disable-protocols
|
--disable-protocols
|
||||||
--enable-protocol=file,fd,pipe,http,https,rtp,tcp,udp
|
--enable-protocol=file,fd,pipe,rtp,udp
|
||||||
--disable-muxers
|
--disable-muxers
|
||||||
--enable-muxer=rtp
|
--enable-muxer=rtp
|
||||||
--disable-encoders
|
--disable-encoders
|
||||||
--disable-decoders
|
--disable-decoders
|
||||||
--enable-decoder=*aac*,h264*,mp3*,mjpeg,rv*
|
--enable-decoder=*aac*,h264*,mp3*,mjpeg,rv*
|
||||||
--disable-demuxers
|
--disable-demuxers
|
||||||
--enable-demuxer=h264,mp3,mov,mpjpeg,rtsp,sdp
|
--enable-demuxer=h264,mp3,mov
|
||||||
--disable-zlib
|
--disable-zlib
|
||||||
--disable-avdevice
|
--disable-avdevice
|
||||||
BUILD_IN_SOURCE ON
|
BUILD_IN_SOURCE ON
|
||||||
|
|||||||
@@ -1,240 +0,0 @@
|
|||||||
# Printer agents
|
|
||||||
|
|
||||||
Printer agents isolate printer-specific communication from the rest of OrcaSlicer. The GUI and
|
|
||||||
`DeviceManager` operate on a shared set of printer operations and device state; a selected printer
|
|
||||||
agent implements those operations for a particular printer ecosystem. The agent boundary allows
|
|
||||||
Bambu, Moonraker-based printers, built-in integrations, and Python-provided integrations to use the
|
|
||||||
same application workflow without making the GUI understand every printer protocol.
|
|
||||||
|
|
||||||
The current boundary is an adapter boundary around the existing application contract. In particular,
|
|
||||||
some request fields and message payloads still use the Bambu-shaped representation that existing
|
|
||||||
`MachineObject` and `DeviceManager` code consumes. The printer agent is responsible for translating
|
|
||||||
that representation into the protocol spoken by its printer. This is an intentional compatibility
|
|
||||||
constraint of the current design; the interface is not yet a neutral printer protocol.
|
|
||||||
|
|
||||||
The v1 dialect migration path is deliberately narrow. `DeviceManager` currently speaks the Bambu JSON
|
|
||||||
dialect because that is the payload shape already used throughout the command and state workflow. The
|
|
||||||
v1 `OrcaPrinterAgent` also accepts that Bambu dialect. Its transport path places the small translation
|
|
||||||
needed for the target printer at `deliver_to_sink`, keeping the compatibility code at the edge rather
|
|
||||||
than spreading it through `DeviceManager` or the agent interface.
|
|
||||||
|
|
||||||
The eventual direction is for `DeviceManager` to produce an Orca JSON dialect. The Bambu agent will then
|
|
||||||
own the translation from Orca JSON to Bambu's protocol, while `OrcaPrinterAgent` can forward the Orca
|
|
||||||
payload directly to its sink. The v1 translation at `deliver_to_sink` can then be removed without
|
|
||||||
changing `DeviceManager`, the command callers, or the rest of the agent workflow.
|
|
||||||
|
|
||||||
## Components
|
|
||||||
|
|
||||||
The system has four relevant layers:
|
|
||||||
|
|
||||||
```text
|
|
||||||
GUI / DeviceManager / MachineObject
|
|
||||||
|
|
|
||||||
NetworkAgent
|
|
||||||
/ \
|
|
||||||
IPrinterAgent ICloudServiceAgent
|
|
||||||
| |
|
|
||||||
printer protocol authentication and cloud services
|
|
||||||
```
|
|
||||||
|
|
||||||
### `DeviceManager` and `MachineObject`
|
|
||||||
|
|
||||||
`DeviceManager` owns the application-facing printer workflow. It maintains `MachineObject` instances,
|
|
||||||
updates their state, filters devices for the active printer agent, and initiates operations such as
|
|
||||||
homing, temperature changes, printing, subscriptions, and camera playback.
|
|
||||||
|
|
||||||
`MachineObject` remains the shared state model used by the GUI. It does not contain the implementation
|
|
||||||
of a printer protocol. When a device is discovered or returned by a cloud query, the device is tagged
|
|
||||||
with the active `printer_agent_id`. Device lists and selected-machine operations use that tag to avoid
|
|
||||||
sending an operation through an agent that does not own the device.
|
|
||||||
|
|
||||||
### `NetworkAgent`
|
|
||||||
|
|
||||||
`NetworkAgent` is the façade used by the GUI and `DeviceManager`. It owns:
|
|
||||||
|
|
||||||
- the currently selected `IPrinterAgent`;
|
|
||||||
- the registered cloud-service instances, indexed by provider;
|
|
||||||
- callbacks shared by the active printer agent and the application;
|
|
||||||
- the forwarding methods for printer commands and cloud operations.
|
|
||||||
|
|
||||||
There is one active printer agent for the currently selected printer preset. Switching the preset
|
|
||||||
increments the machine-list generation, disconnects the old printer agent, removes its callbacks, and
|
|
||||||
installs the newly selected agent. The façade then forwards printer operations to that agent.
|
|
||||||
|
|
||||||
Cloud operations are selected separately using a provider key. `NetworkAgent` forwards a cloud request
|
|
||||||
to the matching `ICloudServiceAgent`, and forwards cloud camera operations with a device ID. The
|
|
||||||
printer agent receives a cloud-agent pointer through `set_cloud_agent()` when it is created, allowing
|
|
||||||
printer communication to obtain cloud tokens without depending on a concrete cloud implementation.
|
|
||||||
|
|
||||||
### `IPrinterAgent`
|
|
||||||
|
|
||||||
`IPrinterAgent` is the printer-facing contract. It covers:
|
|
||||||
|
|
||||||
- cloud-relay and direct-LAN message delivery;
|
|
||||||
- LAN connection, discovery, binding, and certificates;
|
|
||||||
- printer subscriptions and callbacks;
|
|
||||||
- print operations;
|
|
||||||
- filament synchronization;
|
|
||||||
- camera capability and local camera URL reporting;
|
|
||||||
- printer command methods.
|
|
||||||
|
|
||||||
Concrete built-in implementations include the Bambu wrapper, the native Orca/Moonraker path, and
|
|
||||||
other printer-agent implementations registered by the application. A printer agent may use either
|
|
||||||
the cloud agent, a direct LAN connection, or both.
|
|
||||||
|
|
||||||
### `ICloudServiceAgent`
|
|
||||||
|
|
||||||
`ICloudServiceAgent` owns authentication and services provided by a cloud backend. It covers login
|
|
||||||
state, tokens, user and printer lists, settings synchronization, model services, cloud messages, and
|
|
||||||
cloud camera operations.
|
|
||||||
|
|
||||||
Cloud camera operations are device-scoped:
|
|
||||||
|
|
||||||
- `get_camera_url(dev_id, callback)` obtains a stream URL for one device;
|
|
||||||
- `create_camera_signaling_channel(dev_id)` creates signaling for one device where the provider
|
|
||||||
supports it.
|
|
||||||
|
|
||||||
This is separate from the local camera URL exposed by `IPrinterAgent`, which is currently scoped to
|
|
||||||
the active printer agent because a normal LAN agent represents one physical printer connection.
|
|
||||||
|
|
||||||
## Agent registration and selection
|
|
||||||
|
|
||||||
`NetworkAgentFactory` maintains the printer-agent registry. Each registry entry contains an agent ID,
|
|
||||||
a display name, and a factory function. Built-in agents register during application initialization.
|
|
||||||
Python printer-agent capabilities register dynamically and contribute an agent ID and factory entry.
|
|
||||||
|
|
||||||
The selected printer preset contains the printer-agent choice. If no explicit choice is stored, the
|
|
||||||
application preserves the existing default behavior: Bambu presets select the Bambu agent and other
|
|
||||||
presets select the native Orca agent. When a preset is changed, `GUI_App` resolves the effective agent
|
|
||||||
ID, obtains the corresponding cloud agent, creates the printer agent through the registry, and installs
|
|
||||||
it in `NetworkAgent`.
|
|
||||||
|
|
||||||
The registry rejects conflicting agent IDs. This matters for Python plugins because an agent ID is the
|
|
||||||
stable identity used by presets and device ownership; two enabled plugin capabilities must not claim
|
|
||||||
the same ID.
|
|
||||||
|
|
||||||
## Message and command flow
|
|
||||||
|
|
||||||
There are two low-level message paths:
|
|
||||||
|
|
||||||
- `send_message()` publishes a command through the printer's cloud relay;
|
|
||||||
- `send_message_to_printer()` sends a command directly to the printer over the LAN path.
|
|
||||||
|
|
||||||
Both paths accept a JSON string, quality-of-service and flag values, and return the existing network
|
|
||||||
status code domain. The agent owns the conversion from that JSON contract to its native transport.
|
|
||||||
|
|
||||||
The typed `command_*` methods are the application-facing convenience layer. The five generic defaults
|
|
||||||
currently implemented by `IPrinterAgent` construct the existing JSON dialect and route through the
|
|
||||||
same message path:
|
|
||||||
|
|
||||||
| Method | Default operation |
|
|
||||||
| --- | --- |
|
|
||||||
| `command_xyz_abs()` | Send `G90` for absolute positioning |
|
|
||||||
| `command_auto_leveling()` | Send `G29` for bed leveling |
|
|
||||||
| `command_go_home()` | Use the supported homing operation or send `G28` |
|
|
||||||
| `command_set_bed()` | Use the supported bed control or send `M140` |
|
|
||||||
| `command_set_nozzle()` | Send `M104` for nozzle temperature |
|
|
||||||
|
|
||||||
These are compatibility defaults for common printer workflows, not a guarantee that every firmware
|
|
||||||
implements every command identically. An agent can override a method when its protocol needs another
|
|
||||||
operation. For example, a Klipper configuration may use `BED_MESH_CALIBRATE` instead of `G29`.
|
|
||||||
|
|
||||||
The remaining common command methods default to `ORCA_NETWORK_ERR_CMD_NOT_SUPPORTED` because their
|
|
||||||
existing behavior is vendor-specific or has no portable implementation:
|
|
||||||
|
|
||||||
- AMS RFID refresh;
|
|
||||||
- AMS calibration;
|
|
||||||
- AMS tray selection;
|
|
||||||
- camera start;
|
|
||||||
- axis control.
|
|
||||||
|
|
||||||
The methods remain on the common interface so an agent that supports them can override them explicitly.
|
|
||||||
`sequence_id` remains part of the command contract because `DeviceManager` creates and tracks it as
|
|
||||||
the command ID.
|
|
||||||
|
|
||||||
## Device ownership and stale responses
|
|
||||||
|
|
||||||
Printer-agent ownership is represented by `printer_agent_id` on device records and `MachineObject`
|
|
||||||
instances. The active agent ID is attached when a device is discovered, returned by a cloud list, or
|
|
||||||
reused after a preset switch. Local-machine configuration also persists the agent ID so a saved LAN
|
|
||||||
device is not silently reused by an unrelated agent.
|
|
||||||
|
|
||||||
Cloud printer-list responses carry three pieces of request context added by `NetworkAgent`:
|
|
||||||
|
|
||||||
```text
|
|
||||||
provider cloud provider used for the request
|
|
||||||
agent_id active printer agent when the request was made
|
|
||||||
generation machine-list generation when the request was made
|
|
||||||
```
|
|
||||||
|
|
||||||
`DeviceManager` accepts the response only when those values still match the current provider, active
|
|
||||||
agent, and generation. This prevents a slow response from the previous preset or provider from
|
|
||||||
repopulating the current device list.
|
|
||||||
|
|
||||||
The provider mapping is currently selected by `GUI_App`: the Bambu agent maps to the Bambu cloud
|
|
||||||
provider and other agents map to the Orca cloud provider. The generation check protects that existing
|
|
||||||
selection from races; it does not make cloud-provider ownership intrinsic to an agent. Cloud-printer
|
|
||||||
ownership and the broader Orca cloud services are therefore still separate architectural concerns.
|
|
||||||
|
|
||||||
## Python printer agents
|
|
||||||
|
|
||||||
`PrinterAgentPluginCapability` implements `IPrinterAgent` directly. The live capability object is
|
|
||||||
registered with `NetworkAgentFactory` and handed out as the printer agent when its agent ID is selected.
|
|
||||||
The plugin receives the selected `ICloudServiceAgent` through `set_cloud_agent()` just like a built-in
|
|
||||||
printer agent.
|
|
||||||
|
|
||||||
Python plugins must implement the core communication and lifecycle methods required by the interface,
|
|
||||||
including agent metadata, printer connection, discovery callbacks, and the two message-send methods.
|
|
||||||
Methods that are meaningful only to a particular printer are optional overrides where the C++ base
|
|
||||||
class provides a default.
|
|
||||||
|
|
||||||
All ten `command_*` methods are available in the Python binding and in the trampoline. Their override
|
|
||||||
status is intentionally optional:
|
|
||||||
|
|
||||||
- the five generic commands use the C++ default when Python does not override them;
|
|
||||||
- the five vendor-specific commands return `NOT_SUPPORTED` unless Python supplies an implementation;
|
|
||||||
- a Python implementation can replace either behavior for its own protocol.
|
|
||||||
|
|
||||||
The Python camera binding exposes HTTP, HTTPS, RTSP, and HTTP-snapshot modes. WebRTC remains a
|
|
||||||
built-in C++ camera mode, but is not exposed as a Python mode because the current Python capability
|
|
||||||
does not provide the corresponding cloud signaling-channel contract.
|
|
||||||
|
|
||||||
## Camera playback boundary
|
|
||||||
|
|
||||||
The camera stream mode describes how a stream is obtained; it does not by itself define ownership of
|
|
||||||
the wxWidgets view that renders it. `MediaPlayCtrl` selects and tears down the active backend, while
|
|
||||||
the wx parent owns the child window or renderer. This is important because a web view, native media
|
|
||||||
control, and frame-based/WebRTC renderer have different wx window-lifetime requirements.
|
|
||||||
|
|
||||||
Cloud URL and signaling requests are routed through `NetworkAgent` to the cloud provider selected for
|
|
||||||
the device. Local URL requests are routed to the active printer agent. The distinction keeps cloud
|
|
||||||
account services device-scoped while preserving the current one-LAN-agent/one-printer model.
|
|
||||||
|
|
||||||
## Compatibility constraints
|
|
||||||
|
|
||||||
The printer-agent boundary intentionally preserves several existing application contracts:
|
|
||||||
|
|
||||||
- Bambu-shaped JSON is still the shared command representation;
|
|
||||||
- existing network status codes are reused, with Orca-specific unsupported/capability errors added
|
|
||||||
in the Orca-reserved range;
|
|
||||||
- `MachineObject` remains the shared device-state model;
|
|
||||||
- preset and local-machine data retain compatibility with the existing agent-selection behavior;
|
|
||||||
- Python plugins use the existing capability and pybind11 registration system.
|
|
||||||
|
|
||||||
The agent abstraction is therefore responsible for containing vendor differences, not for pretending
|
|
||||||
that all vendor protocols are identical. The planned Orca JSON dialect is the protocol-neutral command
|
|
||||||
model for the `DeviceManager`/agent boundary. Once it is introduced, Bambu-specific translation remains
|
|
||||||
inside the Bambu agent and the Orca agent's v1 sink adapter can be removed as a self-contained cleanup.
|
|
||||||
|
|
||||||
## Main implementation locations
|
|
||||||
|
|
||||||
- [`IPrinterAgent`](../../src/slic3r/Utils/IPrinterAgent.hpp) — printer-agent contract and generic command defaults
|
|
||||||
- [`ICloudServiceAgent`](../../src/slic3r/Utils/ICloudServiceAgent.hpp) — cloud service and per-device
|
|
||||||
cloud camera contract
|
|
||||||
- [`NetworkAgent`](../../src/slic3r/Utils/NetworkAgent.hpp) — façade and dispatch between active agents
|
|
||||||
- [`NetworkAgentFactory`](../../src/slic3r/Utils/NetworkAgentFactory.hpp) — built-in and Python agent registry
|
|
||||||
- [`DeviceManager`](../../src/slic3r/GUI/DeviceCore/DevManager.cpp) — device ownership, filtering, and
|
|
||||||
stale-response checks
|
|
||||||
- [`PrinterAgentPluginCapability`](../../src/slic3r/plugin/pluginTypes/printerAgent/PrinterAgentPluginCapability.cpp)
|
|
||||||
— Python bindings
|
|
||||||
- [`MediaPlayCtrl`](../../src/slic3r/GUI/MediaPlayCtrl.cpp) — camera backend selection and playback lifecycle
|
|
||||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 8.8 KiB |
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 279 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 7.5 KiB |
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 30 KiB |
@@ -30,6 +30,7 @@
|
|||||||
"Bambu Lab H2D Pro 0.2 nozzle",
|
"Bambu Lab H2D Pro 0.2 nozzle",
|
||||||
"Bambu Lab H2S 0.2 nozzle",
|
"Bambu Lab H2S 0.2 nozzle",
|
||||||
"Bambu Lab P2S 0.2 nozzle",
|
"Bambu Lab P2S 0.2 nozzle",
|
||||||
|
"Bambu Lab H2C 0.2 nozzle",
|
||||||
"Bambu Lab X2D 0.2 nozzle"
|
"Bambu Lab X2D 0.2 nozzle"
|
||||||
],
|
],
|
||||||
"Bambu Lab A1 0.4 nozzle": [
|
"Bambu Lab A1 0.4 nozzle": [
|
||||||
@@ -43,6 +44,7 @@
|
|||||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||||
"Bambu Lab H2S 0.4 nozzle",
|
"Bambu Lab H2S 0.4 nozzle",
|
||||||
"Bambu Lab P2S 0.4 nozzle",
|
"Bambu Lab P2S 0.4 nozzle",
|
||||||
|
"Bambu Lab H2C 0.4 nozzle",
|
||||||
"Bambu Lab X2D 0.4 nozzle"
|
"Bambu Lab X2D 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"Bambu Lab A1 0.6 nozzle": [
|
"Bambu Lab A1 0.6 nozzle": [
|
||||||
@@ -56,6 +58,7 @@
|
|||||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||||
"Bambu Lab H2S 0.6 nozzle",
|
"Bambu Lab H2S 0.6 nozzle",
|
||||||
"Bambu Lab P2S 0.6 nozzle",
|
"Bambu Lab P2S 0.6 nozzle",
|
||||||
|
"Bambu Lab H2C 0.6 nozzle",
|
||||||
"Bambu Lab X2D 0.6 nozzle"
|
"Bambu Lab X2D 0.6 nozzle"
|
||||||
],
|
],
|
||||||
"Bambu Lab A1 0.8 nozzle": [
|
"Bambu Lab A1 0.8 nozzle": [
|
||||||
@@ -69,6 +72,7 @@
|
|||||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||||
"Bambu Lab H2S 0.8 nozzle",
|
"Bambu Lab H2S 0.8 nozzle",
|
||||||
"Bambu Lab P2S 0.8 nozzle",
|
"Bambu Lab P2S 0.8 nozzle",
|
||||||
|
"Bambu Lab H2C 0.8 nozzle",
|
||||||
"Bambu Lab X2D 0.8 nozzle"
|
"Bambu Lab X2D 0.8 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -102,6 +106,7 @@
|
|||||||
"Bambu Lab H2D Pro 0.2 nozzle",
|
"Bambu Lab H2D Pro 0.2 nozzle",
|
||||||
"Bambu Lab H2S 0.2 nozzle",
|
"Bambu Lab H2S 0.2 nozzle",
|
||||||
"Bambu Lab P2S 0.2 nozzle",
|
"Bambu Lab P2S 0.2 nozzle",
|
||||||
|
"Bambu Lab H2C 0.2 nozzle",
|
||||||
"Bambu Lab X2D 0.2 nozzle"
|
"Bambu Lab X2D 0.2 nozzle"
|
||||||
],
|
],
|
||||||
"Bambu Lab A1 mini 0.4 nozzle": [
|
"Bambu Lab A1 mini 0.4 nozzle": [
|
||||||
@@ -114,6 +119,7 @@
|
|||||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||||
"Bambu Lab H2S 0.4 nozzle",
|
"Bambu Lab H2S 0.4 nozzle",
|
||||||
"Bambu Lab P2S 0.4 nozzle",
|
"Bambu Lab P2S 0.4 nozzle",
|
||||||
|
"Bambu Lab H2C 0.4 nozzle",
|
||||||
"Bambu Lab X2D 0.4 nozzle"
|
"Bambu Lab X2D 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"Bambu Lab A1 mini 0.6 nozzle": [
|
"Bambu Lab A1 mini 0.6 nozzle": [
|
||||||
@@ -126,6 +132,7 @@
|
|||||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||||
"Bambu Lab H2S 0.6 nozzle",
|
"Bambu Lab H2S 0.6 nozzle",
|
||||||
"Bambu Lab P2S 0.6 nozzle",
|
"Bambu Lab P2S 0.6 nozzle",
|
||||||
|
"Bambu Lab H2C 0.6 nozzle",
|
||||||
"Bambu Lab X2D 0.6 nozzle"
|
"Bambu Lab X2D 0.6 nozzle"
|
||||||
],
|
],
|
||||||
"Bambu Lab A1 mini 0.8 nozzle": [
|
"Bambu Lab A1 mini 0.8 nozzle": [
|
||||||
@@ -138,6 +145,7 @@
|
|||||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||||
"Bambu Lab H2S 0.8 nozzle",
|
"Bambu Lab H2S 0.8 nozzle",
|
||||||
"Bambu Lab P2S 0.8 nozzle",
|
"Bambu Lab P2S 0.8 nozzle",
|
||||||
|
"Bambu Lab H2C 0.8 nozzle",
|
||||||
"Bambu Lab X2D 0.8 nozzle"
|
"Bambu Lab X2D 0.8 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -151,7 +159,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.2 nozzle",
|
"Bambu Lab H2D Pro 0.2 nozzle",
|
||||||
"Bambu Lab H2S 0.2 nozzle",
|
"Bambu Lab H2S 0.2 nozzle",
|
||||||
"Bambu Lab P2S 0.2 nozzle",
|
"Bambu Lab P2S 0.2 nozzle",
|
||||||
"Bambu Lab X2D 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 X1 0.4 nozzle": [
|
||||||
"Bambu Lab A1 mini 0.4 nozzle",
|
"Bambu Lab A1 mini 0.4 nozzle",
|
||||||
@@ -160,7 +170,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||||
"Bambu Lab H2S 0.4 nozzle",
|
"Bambu Lab H2S 0.4 nozzle",
|
||||||
"Bambu Lab P2S 0.4 nozzle",
|
"Bambu Lab P2S 0.4 nozzle",
|
||||||
"Bambu Lab X2D 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 X1 0.6 nozzle": [
|
||||||
"Bambu Lab A1 mini 0.6 nozzle",
|
"Bambu Lab A1 mini 0.6 nozzle",
|
||||||
@@ -169,7 +181,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||||
"Bambu Lab H2S 0.6 nozzle",
|
"Bambu Lab H2S 0.6 nozzle",
|
||||||
"Bambu Lab P2S 0.6 nozzle",
|
"Bambu Lab P2S 0.6 nozzle",
|
||||||
"Bambu Lab X2D 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 X1 0.8 nozzle": [
|
||||||
"Bambu Lab A1 mini 0.8 nozzle",
|
"Bambu Lab A1 mini 0.8 nozzle",
|
||||||
@@ -178,7 +192,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||||
"Bambu Lab H2S 0.8 nozzle",
|
"Bambu Lab H2S 0.8 nozzle",
|
||||||
"Bambu Lab P2S 0.8 nozzle",
|
"Bambu Lab P2S 0.8 nozzle",
|
||||||
"Bambu Lab X2D 0.8 nozzle"
|
"Bambu Lab H2C 0.8 nozzle",
|
||||||
|
"Bambu Lab X2D 0.8 nozzle",
|
||||||
|
"Bambu Lab A2L 0.8 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -191,7 +207,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.2 nozzle",
|
"Bambu Lab H2D Pro 0.2 nozzle",
|
||||||
"Bambu Lab H2S 0.2 nozzle",
|
"Bambu Lab H2S 0.2 nozzle",
|
||||||
"Bambu Lab P2S 0.2 nozzle",
|
"Bambu Lab P2S 0.2 nozzle",
|
||||||
"Bambu Lab X2D 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 X1 Carbon 0.4 nozzle": [
|
||||||
"Bambu Lab A1 mini 0.4 nozzle",
|
"Bambu Lab A1 mini 0.4 nozzle",
|
||||||
@@ -200,7 +218,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||||
"Bambu Lab H2S 0.4 nozzle",
|
"Bambu Lab H2S 0.4 nozzle",
|
||||||
"Bambu Lab P2S 0.4 nozzle",
|
"Bambu Lab P2S 0.4 nozzle",
|
||||||
"Bambu Lab X2D 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 X1 Carbon 0.6 nozzle": [
|
||||||
"Bambu Lab A1 mini 0.6 nozzle",
|
"Bambu Lab A1 mini 0.6 nozzle",
|
||||||
@@ -209,7 +229,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||||
"Bambu Lab H2S 0.6 nozzle",
|
"Bambu Lab H2S 0.6 nozzle",
|
||||||
"Bambu Lab P2S 0.6 nozzle",
|
"Bambu Lab P2S 0.6 nozzle",
|
||||||
"Bambu Lab X2D 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 X1 Carbon 0.8 nozzle": [
|
||||||
"Bambu Lab A1 mini 0.8 nozzle",
|
"Bambu Lab A1 mini 0.8 nozzle",
|
||||||
@@ -218,7 +240,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||||
"Bambu Lab H2S 0.8 nozzle",
|
"Bambu Lab H2S 0.8 nozzle",
|
||||||
"Bambu Lab P2S 0.8 nozzle",
|
"Bambu Lab P2S 0.8 nozzle",
|
||||||
"Bambu Lab X2D 0.8 nozzle"
|
"Bambu Lab H2C 0.8 nozzle",
|
||||||
|
"Bambu Lab X2D 0.8 nozzle",
|
||||||
|
"Bambu Lab A2L 0.8 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -231,7 +255,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.2 nozzle",
|
"Bambu Lab H2D Pro 0.2 nozzle",
|
||||||
"Bambu Lab H2S 0.2 nozzle",
|
"Bambu Lab H2S 0.2 nozzle",
|
||||||
"Bambu Lab P2S 0.2 nozzle",
|
"Bambu Lab P2S 0.2 nozzle",
|
||||||
"Bambu Lab X2D 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 X1E 0.4 nozzle": [
|
||||||
"Bambu Lab A1 mini 0.4 nozzle",
|
"Bambu Lab A1 mini 0.4 nozzle",
|
||||||
@@ -240,7 +266,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||||
"Bambu Lab H2S 0.4 nozzle",
|
"Bambu Lab H2S 0.4 nozzle",
|
||||||
"Bambu Lab P2S 0.4 nozzle",
|
"Bambu Lab P2S 0.4 nozzle",
|
||||||
"Bambu Lab X2D 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 X1E 0.6 nozzle": [
|
||||||
"Bambu Lab A1 mini 0.6 nozzle",
|
"Bambu Lab A1 mini 0.6 nozzle",
|
||||||
@@ -249,7 +277,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||||
"Bambu Lab H2S 0.6 nozzle",
|
"Bambu Lab H2S 0.6 nozzle",
|
||||||
"Bambu Lab P2S 0.6 nozzle",
|
"Bambu Lab P2S 0.6 nozzle",
|
||||||
"Bambu Lab X2D 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 X1E 0.8 nozzle": [
|
||||||
"Bambu Lab A1 mini 0.8 nozzle",
|
"Bambu Lab A1 mini 0.8 nozzle",
|
||||||
@@ -258,7 +288,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||||
"Bambu Lab H2S 0.8 nozzle",
|
"Bambu Lab H2S 0.8 nozzle",
|
||||||
"Bambu Lab P2S 0.8 nozzle",
|
"Bambu Lab P2S 0.8 nozzle",
|
||||||
"Bambu Lab X2D 0.8 nozzle"
|
"Bambu Lab H2C 0.8 nozzle",
|
||||||
|
"Bambu Lab X2D 0.8 nozzle",
|
||||||
|
"Bambu Lab A2L 0.8 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -271,7 +303,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.2 nozzle",
|
"Bambu Lab H2D Pro 0.2 nozzle",
|
||||||
"Bambu Lab H2S 0.2 nozzle",
|
"Bambu Lab H2S 0.2 nozzle",
|
||||||
"Bambu Lab P2S 0.2 nozzle",
|
"Bambu Lab P2S 0.2 nozzle",
|
||||||
"Bambu Lab X2D 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 P1P 0.4 nozzle": [
|
||||||
"Bambu Lab A1 mini 0.4 nozzle",
|
"Bambu Lab A1 mini 0.4 nozzle",
|
||||||
@@ -280,7 +314,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||||
"Bambu Lab H2S 0.4 nozzle",
|
"Bambu Lab H2S 0.4 nozzle",
|
||||||
"Bambu Lab P2S 0.4 nozzle",
|
"Bambu Lab P2S 0.4 nozzle",
|
||||||
"Bambu Lab X2D 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 P1P 0.6 nozzle": [
|
||||||
"Bambu Lab A1 mini 0.6 nozzle",
|
"Bambu Lab A1 mini 0.6 nozzle",
|
||||||
@@ -289,7 +325,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||||
"Bambu Lab H2S 0.6 nozzle",
|
"Bambu Lab H2S 0.6 nozzle",
|
||||||
"Bambu Lab P2S 0.6 nozzle",
|
"Bambu Lab P2S 0.6 nozzle",
|
||||||
"Bambu Lab X2D 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 P1P 0.8 nozzle": [
|
||||||
"Bambu Lab A1 mini 0.8 nozzle",
|
"Bambu Lab A1 mini 0.8 nozzle",
|
||||||
@@ -298,7 +336,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||||
"Bambu Lab H2S 0.8 nozzle",
|
"Bambu Lab H2S 0.8 nozzle",
|
||||||
"Bambu Lab P2S 0.8 nozzle",
|
"Bambu Lab P2S 0.8 nozzle",
|
||||||
"Bambu Lab X2D 0.8 nozzle"
|
"Bambu Lab H2C 0.8 nozzle",
|
||||||
|
"Bambu Lab X2D 0.8 nozzle",
|
||||||
|
"Bambu Lab A2L 0.8 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -311,7 +351,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.2 nozzle",
|
"Bambu Lab H2D Pro 0.2 nozzle",
|
||||||
"Bambu Lab H2S 0.2 nozzle",
|
"Bambu Lab H2S 0.2 nozzle",
|
||||||
"Bambu Lab P2S 0.2 nozzle",
|
"Bambu Lab P2S 0.2 nozzle",
|
||||||
"Bambu Lab X2D 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 P1S 0.4 nozzle": [
|
||||||
"Bambu Lab A1 mini 0.4 nozzle",
|
"Bambu Lab A1 mini 0.4 nozzle",
|
||||||
@@ -320,7 +362,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||||
"Bambu Lab H2S 0.4 nozzle",
|
"Bambu Lab H2S 0.4 nozzle",
|
||||||
"Bambu Lab P2S 0.4 nozzle",
|
"Bambu Lab P2S 0.4 nozzle",
|
||||||
"Bambu Lab X2D 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 P1S 0.6 nozzle": [
|
||||||
"Bambu Lab A1 mini 0.6 nozzle",
|
"Bambu Lab A1 mini 0.6 nozzle",
|
||||||
@@ -329,7 +373,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||||
"Bambu Lab H2S 0.6 nozzle",
|
"Bambu Lab H2S 0.6 nozzle",
|
||||||
"Bambu Lab P2S 0.6 nozzle",
|
"Bambu Lab P2S 0.6 nozzle",
|
||||||
"Bambu Lab X2D 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 P1S 0.8 nozzle": [
|
||||||
"Bambu Lab A1 mini 0.8 nozzle",
|
"Bambu Lab A1 mini 0.8 nozzle",
|
||||||
@@ -338,7 +384,9 @@
|
|||||||
"Bambu Lab H2D Pro 0.8 nozzle",
|
"Bambu Lab H2D Pro 0.8 nozzle",
|
||||||
"Bambu Lab H2S 0.8 nozzle",
|
"Bambu Lab H2S 0.8 nozzle",
|
||||||
"Bambu Lab P2S 0.8 nozzle",
|
"Bambu Lab P2S 0.8 nozzle",
|
||||||
"Bambu Lab X2D 0.8 nozzle"
|
"Bambu Lab H2C 0.8 nozzle",
|
||||||
|
"Bambu Lab X2D 0.8 nozzle",
|
||||||
|
"Bambu Lab A2L 0.8 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -354,7 +402,9 @@
|
|||||||
"Bambu Lab A1 mini 0.2 nozzle",
|
"Bambu Lab A1 mini 0.2 nozzle",
|
||||||
"Bambu Lab H2S 0.2 nozzle",
|
"Bambu Lab H2S 0.2 nozzle",
|
||||||
"Bambu Lab P2S 0.2 nozzle",
|
"Bambu Lab P2S 0.2 nozzle",
|
||||||
"Bambu Lab X2D 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 H2D 0.4 nozzle": [
|
||||||
"Bambu Lab P1S 0.4 nozzle",
|
"Bambu Lab P1S 0.4 nozzle",
|
||||||
@@ -366,7 +416,9 @@
|
|||||||
"Bambu Lab A1 mini 0.4 nozzle",
|
"Bambu Lab A1 mini 0.4 nozzle",
|
||||||
"Bambu Lab H2S 0.4 nozzle",
|
"Bambu Lab H2S 0.4 nozzle",
|
||||||
"Bambu Lab P2S 0.4 nozzle",
|
"Bambu Lab P2S 0.4 nozzle",
|
||||||
"Bambu Lab X2D 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 H2D 0.6 nozzle": [
|
||||||
"Bambu Lab P1S 0.6 nozzle",
|
"Bambu Lab P1S 0.6 nozzle",
|
||||||
@@ -378,7 +430,9 @@
|
|||||||
"Bambu Lab A1 mini 0.6 nozzle",
|
"Bambu Lab A1 mini 0.6 nozzle",
|
||||||
"Bambu Lab H2S 0.6 nozzle",
|
"Bambu Lab H2S 0.6 nozzle",
|
||||||
"Bambu Lab P2S 0.6 nozzle",
|
"Bambu Lab P2S 0.6 nozzle",
|
||||||
"Bambu Lab X2D 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 H2D 0.8 nozzle": [
|
||||||
"Bambu Lab P1S 0.8 nozzle",
|
"Bambu Lab P1S 0.8 nozzle",
|
||||||
@@ -390,7 +444,9 @@
|
|||||||
"Bambu Lab A1 mini 0.8 nozzle",
|
"Bambu Lab A1 mini 0.8 nozzle",
|
||||||
"Bambu Lab H2S 0.8 nozzle",
|
"Bambu Lab H2S 0.8 nozzle",
|
||||||
"Bambu Lab P2S 0.8 nozzle",
|
"Bambu Lab P2S 0.8 nozzle",
|
||||||
"Bambu Lab X2D 0.8 nozzle"
|
"Bambu Lab H2C 0.8 nozzle",
|
||||||
|
"Bambu Lab X2D 0.8 nozzle",
|
||||||
|
"Bambu Lab A2L 0.8 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -406,7 +462,9 @@
|
|||||||
"Bambu Lab A1 mini 0.2 nozzle",
|
"Bambu Lab A1 mini 0.2 nozzle",
|
||||||
"Bambu Lab H2S 0.2 nozzle",
|
"Bambu Lab H2S 0.2 nozzle",
|
||||||
"Bambu Lab P2S 0.2 nozzle",
|
"Bambu Lab P2S 0.2 nozzle",
|
||||||
"Bambu Lab X2D 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 H2D Pro 0.4 nozzle": [
|
||||||
"Bambu Lab P1S 0.4 nozzle",
|
"Bambu Lab P1S 0.4 nozzle",
|
||||||
@@ -418,7 +476,9 @@
|
|||||||
"Bambu Lab A1 mini 0.4 nozzle",
|
"Bambu Lab A1 mini 0.4 nozzle",
|
||||||
"Bambu Lab H2S 0.4 nozzle",
|
"Bambu Lab H2S 0.4 nozzle",
|
||||||
"Bambu Lab P2S 0.4 nozzle",
|
"Bambu Lab P2S 0.4 nozzle",
|
||||||
"Bambu Lab X2D 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 H2D Pro 0.6 nozzle": [
|
||||||
"Bambu Lab P1S 0.6 nozzle",
|
"Bambu Lab P1S 0.6 nozzle",
|
||||||
@@ -430,7 +490,9 @@
|
|||||||
"Bambu Lab A1 mini 0.6 nozzle",
|
"Bambu Lab A1 mini 0.6 nozzle",
|
||||||
"Bambu Lab H2S 0.6 nozzle",
|
"Bambu Lab H2S 0.6 nozzle",
|
||||||
"Bambu Lab P2S 0.6 nozzle",
|
"Bambu Lab P2S 0.6 nozzle",
|
||||||
"Bambu Lab X2D 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 H2D Pro 0.8 nozzle": [
|
||||||
"Bambu Lab P1S 0.8 nozzle",
|
"Bambu Lab P1S 0.8 nozzle",
|
||||||
@@ -442,7 +504,9 @@
|
|||||||
"Bambu Lab A1 mini 0.8 nozzle",
|
"Bambu Lab A1 mini 0.8 nozzle",
|
||||||
"Bambu Lab H2S 0.8 nozzle",
|
"Bambu Lab H2S 0.8 nozzle",
|
||||||
"Bambu Lab P2S 0.8 nozzle",
|
"Bambu Lab P2S 0.8 nozzle",
|
||||||
"Bambu Lab X2D 0.8 nozzle"
|
"Bambu Lab H2C 0.8 nozzle",
|
||||||
|
"Bambu Lab X2D 0.8 nozzle",
|
||||||
|
"Bambu Lab A2L 0.8 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -459,7 +523,9 @@
|
|||||||
"Bambu Lab X1 Carbon 0.2 nozzle",
|
"Bambu Lab X1 Carbon 0.2 nozzle",
|
||||||
"Bambu Lab X1E 0.2 nozzle",
|
"Bambu Lab X1E 0.2 nozzle",
|
||||||
"Bambu Lab P2S 0.2 nozzle",
|
"Bambu Lab P2S 0.2 nozzle",
|
||||||
"Bambu Lab X2D 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 H2S 0.4 nozzle": [
|
||||||
"Bambu Lab A1 0.4 nozzle",
|
"Bambu Lab A1 0.4 nozzle",
|
||||||
@@ -472,7 +538,9 @@
|
|||||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||||
"Bambu Lab X1E 0.4 nozzle",
|
"Bambu Lab X1E 0.4 nozzle",
|
||||||
"Bambu Lab P2S 0.4 nozzle",
|
"Bambu Lab P2S 0.4 nozzle",
|
||||||
"Bambu Lab X2D 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 H2S 0.6 nozzle": [
|
||||||
"Bambu Lab A1 0.6 nozzle",
|
"Bambu Lab A1 0.6 nozzle",
|
||||||
@@ -485,7 +553,9 @@
|
|||||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||||
"Bambu Lab X1E 0.6 nozzle",
|
"Bambu Lab X1E 0.6 nozzle",
|
||||||
"Bambu Lab P2S 0.6 nozzle",
|
"Bambu Lab P2S 0.6 nozzle",
|
||||||
"Bambu Lab X2D 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 H2S 0.8 nozzle": [
|
||||||
"Bambu Lab A1 0.8 nozzle",
|
"Bambu Lab A1 0.8 nozzle",
|
||||||
@@ -498,7 +568,9 @@
|
|||||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||||
"Bambu Lab X1E 0.8 nozzle",
|
"Bambu Lab X1E 0.8 nozzle",
|
||||||
"Bambu Lab P2S 0.8 nozzle",
|
"Bambu Lab P2S 0.8 nozzle",
|
||||||
"Bambu Lab X2D 0.8 nozzle"
|
"Bambu Lab H2C 0.8 nozzle",
|
||||||
|
"Bambu Lab X2D 0.8 nozzle",
|
||||||
|
"Bambu Lab A2L 0.8 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -515,7 +587,9 @@
|
|||||||
"Bambu Lab X1 0.2 nozzle",
|
"Bambu Lab X1 0.2 nozzle",
|
||||||
"Bambu Lab X1 Carbon 0.2 nozzle",
|
"Bambu Lab X1 Carbon 0.2 nozzle",
|
||||||
"Bambu Lab X1E 0.2 nozzle",
|
"Bambu Lab X1E 0.2 nozzle",
|
||||||
"Bambu Lab X2D 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 P2S 0.4 nozzle": [
|
||||||
"Bambu Lab A1 0.4 nozzle",
|
"Bambu Lab A1 0.4 nozzle",
|
||||||
@@ -528,7 +602,9 @@
|
|||||||
"Bambu Lab X1 0.4 nozzle",
|
"Bambu Lab X1 0.4 nozzle",
|
||||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||||
"Bambu Lab X1E 0.4 nozzle",
|
"Bambu Lab X1E 0.4 nozzle",
|
||||||
"Bambu Lab X2D 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 P2S 0.6 nozzle": [
|
||||||
"Bambu Lab A1 0.6 nozzle",
|
"Bambu Lab A1 0.6 nozzle",
|
||||||
@@ -541,7 +617,9 @@
|
|||||||
"Bambu Lab X1 0.6 nozzle",
|
"Bambu Lab X1 0.6 nozzle",
|
||||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||||
"Bambu Lab X1E 0.6 nozzle",
|
"Bambu Lab X1E 0.6 nozzle",
|
||||||
"Bambu Lab X2D 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 P2S 0.8 nozzle": [
|
||||||
"Bambu Lab A1 0.8 nozzle",
|
"Bambu Lab A1 0.8 nozzle",
|
||||||
@@ -554,67 +632,9 @@
|
|||||||
"Bambu Lab X1 0.8 nozzle",
|
"Bambu Lab X1 0.8 nozzle",
|
||||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||||
"Bambu Lab X1E 0.8 nozzle",
|
"Bambu Lab X1E 0.8 nozzle",
|
||||||
"Bambu Lab X2D 0.8 nozzle"
|
"Bambu Lab H2C 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 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"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -682,6 +702,70 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"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": {
|
"Bambu Lab A2L": {
|
||||||
"machine_limits": {
|
"machine_limits": {
|
||||||
"cli_safe_acceleration_e": "0,0",
|
"cli_safe_acceleration_e": "0,0",
|
||||||
|
|||||||
@@ -17,6 +17,9 @@
|
|||||||
"filament_retraction_distances_when_cut": [
|
"filament_retraction_distances_when_cut": [
|
||||||
"18"
|
"18"
|
||||||
],
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"0.4"
|
||||||
|
],
|
||||||
"hot_plate_temp": [
|
"hot_plate_temp": [
|
||||||
"100"
|
"100"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -77,105 +77,8 @@
|
|||||||
"20",
|
"20",
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"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": [
|
"nozzle_temperature": [
|
||||||
"270",
|
"270",
|
||||||
|
|||||||
@@ -14,33 +14,44 @@
|
|||||||
"counter_coef_3": [
|
"counter_coef_3": [
|
||||||
"0.0241"
|
"0.0241"
|
||||||
],
|
],
|
||||||
"counter_limit_max": [
|
|
||||||
"0.3341"
|
|
||||||
],
|
|
||||||
"counter_limit_min": [
|
"counter_limit_min": [
|
||||||
"0.0241"
|
"0.0241"
|
||||||
],
|
],
|
||||||
|
"counter_limit_max": [
|
||||||
|
"0.3341"
|
||||||
|
],
|
||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_change_length": [
|
|
||||||
"4"
|
|
||||||
],
|
|
||||||
"filament_cooling_before_tower": [
|
"filament_cooling_before_tower": [
|
||||||
|
"10",
|
||||||
"10",
|
"10",
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
|
"0.98",
|
||||||
"0.98",
|
"0.98",
|
||||||
"0.98"
|
"0.98"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"25",
|
"25",
|
||||||
"30"
|
"30",
|
||||||
|
"25"
|
||||||
],
|
],
|
||||||
"filament_pre_cooling_temperature_nc": [
|
"filament_retraction_length": [
|
||||||
"230",
|
"0.4",
|
||||||
"230"
|
"0.4",
|
||||||
|
"0.4"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"1",
|
||||||
|
"1",
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"1",
|
||||||
|
"1",
|
||||||
|
"1"
|
||||||
],
|
],
|
||||||
"filament_prime_volume": [
|
"filament_prime_volume": [
|
||||||
"30"
|
"30"
|
||||||
@@ -48,137 +59,62 @@
|
|||||||
"filament_prime_volume_nc": [
|
"filament_prime_volume_nc": [
|
||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Spiral Lift",
|
||||||
|
"Spiral Lift",
|
||||||
|
"Spiral Lift"
|
||||||
|
],
|
||||||
|
"filament_pre_cooling_temperature_nc": [
|
||||||
|
"230",
|
||||||
|
"230",
|
||||||
|
"230"
|
||||||
|
],
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time_nc": [
|
"filament_ramming_travel_time_nc": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"0.4",
|
|
||||||
"0.4"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_wipe_distance": [
|
"filament_change_length": [
|
||||||
"1",
|
"4"
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"Spiral Lift",
|
|
||||||
"Spiral Lift"
|
|
||||||
],
|
|
||||||
"first_x_layer_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_change_length_nc": [
|
"filament_change_length_nc": [
|
||||||
"4"
|
"4"
|
||||||
],
|
],
|
||||||
|
"first_x_layer_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
"hole_coef_2": [
|
"hole_coef_2": [
|
||||||
"-0.0008"
|
"-0.0008"
|
||||||
],
|
],
|
||||||
"hole_coef_3": [
|
"hole_coef_3": [
|
||||||
"0.1319"
|
"0.1319"
|
||||||
],
|
],
|
||||||
"hole_limit_max": [
|
|
||||||
"0.1319"
|
|
||||||
],
|
|
||||||
"hole_limit_min": [
|
"hole_limit_min": [
|
||||||
"0.1119"
|
"0.1119"
|
||||||
],
|
],
|
||||||
|
"hole_limit_max": [
|
||||||
|
"0.1319"
|
||||||
|
],
|
||||||
"filament_preheat_temperature_delta": [
|
"filament_preheat_temperature_delta": [
|
||||||
|
"20",
|
||||||
"20",
|
"20",
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual_e3d"
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_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": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
@@ -186,6 +122,7 @@
|
|||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"slow_down_min_speed": [
|
"slow_down_min_speed": [
|
||||||
|
"20",
|
||||||
"20",
|
"20",
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -94,85 +94,8 @@
|
|||||||
"20",
|
"20",
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_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": [
|
"nozzle_temperature": [
|
||||||
"270",
|
"270",
|
||||||
|
|||||||
@@ -14,33 +14,44 @@
|
|||||||
"counter_coef_3": [
|
"counter_coef_3": [
|
||||||
"0.0241"
|
"0.0241"
|
||||||
],
|
],
|
||||||
"counter_limit_max": [
|
|
||||||
"0.3341"
|
|
||||||
],
|
|
||||||
"counter_limit_min": [
|
"counter_limit_min": [
|
||||||
"0.0241"
|
"0.0241"
|
||||||
],
|
],
|
||||||
|
"counter_limit_max": [
|
||||||
|
"0.3341"
|
||||||
|
],
|
||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_change_length": [
|
|
||||||
"4"
|
|
||||||
],
|
|
||||||
"filament_cooling_before_tower": [
|
"filament_cooling_before_tower": [
|
||||||
|
"10",
|
||||||
"10",
|
"10",
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
|
"0.98",
|
||||||
"0.98",
|
"0.98",
|
||||||
"0.98"
|
"0.98"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"20",
|
"20",
|
||||||
"30"
|
"30",
|
||||||
|
"20"
|
||||||
],
|
],
|
||||||
"filament_pre_cooling_temperature_nc": [
|
"filament_retraction_length": [
|
||||||
"230",
|
"0.4",
|
||||||
"230"
|
"0.6",
|
||||||
|
"0.4"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"1",
|
||||||
|
"1",
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"1",
|
||||||
|
"1",
|
||||||
|
"1"
|
||||||
],
|
],
|
||||||
"filament_prime_volume": [
|
"filament_prime_volume": [
|
||||||
"30"
|
"30"
|
||||||
@@ -48,137 +59,62 @@
|
|||||||
"filament_prime_volume_nc": [
|
"filament_prime_volume_nc": [
|
||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Spiral Lift",
|
||||||
|
"Spiral Lift",
|
||||||
|
"Spiral Lift"
|
||||||
|
],
|
||||||
|
"filament_pre_cooling_temperature_nc": [
|
||||||
|
"230",
|
||||||
|
"230",
|
||||||
|
"230"
|
||||||
|
],
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time_nc": [
|
"filament_ramming_travel_time_nc": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"0.4",
|
|
||||||
"0.6"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_wipe_distance": [
|
"filament_change_length": [
|
||||||
"1",
|
"4"
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"Spiral Lift",
|
|
||||||
"Spiral Lift"
|
|
||||||
],
|
|
||||||
"first_x_layer_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_change_length_nc": [
|
"filament_change_length_nc": [
|
||||||
"4"
|
"4"
|
||||||
],
|
],
|
||||||
|
"first_x_layer_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
"hole_coef_2": [
|
"hole_coef_2": [
|
||||||
"-0.0008"
|
"-0.0008"
|
||||||
],
|
],
|
||||||
"hole_coef_3": [
|
"hole_coef_3": [
|
||||||
"0.1319"
|
"0.1319"
|
||||||
],
|
],
|
||||||
"hole_limit_max": [
|
|
||||||
"0.1319"
|
|
||||||
],
|
|
||||||
"hole_limit_min": [
|
"hole_limit_min": [
|
||||||
"0.1119"
|
"0.1119"
|
||||||
],
|
],
|
||||||
|
"hole_limit_max": [
|
||||||
|
"0.1319"
|
||||||
|
],
|
||||||
"filament_preheat_temperature_delta": [
|
"filament_preheat_temperature_delta": [
|
||||||
|
"20",
|
||||||
"20",
|
"20",
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual_e3d"
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_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": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
@@ -186,6 +122,7 @@
|
|||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"slow_down_min_speed": [
|
"slow_down_min_speed": [
|
||||||
|
"20",
|
||||||
"20",
|
"20",
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -8,100 +8,53 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
|
"counter_coef_2": [
|
||||||
|
"0.0124"
|
||||||
|
],
|
||||||
|
"counter_coef_3": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
|
"counter_limit_max": [
|
||||||
|
"0.3341"
|
||||||
|
],
|
||||||
|
"counter_limit_min": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
|
||||||
"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": [
|
"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": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe_distance": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"filament_prime_volume": [
|
||||||
"0",
|
"30"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"filament_change_length": [
|
||||||
"1",
|
"4"
|
||||||
"1"
|
],
|
||||||
|
"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": [
|
"nozzle_temperature": [
|
||||||
"270",
|
"270",
|
||||||
@@ -111,16 +64,12 @@
|
|||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2D 0.2 nozzle"
|
"Bambu Lab H2D 0.2 nozzle"
|
||||||
|
|||||||
@@ -8,123 +8,94 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
|
"counter_coef_2": [
|
||||||
|
"0.0124"
|
||||||
|
],
|
||||||
|
"counter_coef_3": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
|
"counter_limit_max": [
|
||||||
|
"0.3341"
|
||||||
|
],
|
||||||
|
"counter_limit_min": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_change_length": [
|
||||||
"nil",
|
"4"
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_cooling_before_tower": [
|
||||||
"0.95",
|
"10",
|
||||||
"0.95"
|
"10",
|
||||||
],
|
"10"
|
||||||
"filament_flush_temp": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_flush_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"25",
|
"25",
|
||||||
"35"
|
"35",
|
||||||
|
"25"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_prime_volume": [
|
||||||
"-1",
|
"30"
|
||||||
"-1"
|
|
||||||
],
|
],
|
||||||
"filament_retract_before_wipe": [
|
"filament_ramming_travel_time": [
|
||||||
"nil",
|
"0",
|
||||||
"nil"
|
"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": [
|
"filament_retraction_length": [
|
||||||
|
"0.4",
|
||||||
"0.4",
|
"0.4",
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
|
"1",
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_wipe_distance": [
|
"filament_wipe_distance": [
|
||||||
|
"1",
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
"filament_z_hop_types": [
|
||||||
|
"Spiral Lift",
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"Spiral Lift"
|
"Spiral Lift"
|
||||||
],
|
],
|
||||||
"filament_extruder_variant": [
|
"hole_coef_2": [
|
||||||
"Direct Drive Standard",
|
"-0.0008"
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
],
|
||||||
"filament_pre_cooling_temperature": [
|
"hole_coef_3": [
|
||||||
"0",
|
"0.1319"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time": [
|
"hole_limit_max": [
|
||||||
"0",
|
"0.1319"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"hole_limit_min": [
|
||||||
"0",
|
"0.1119"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_extruder_id": [
|
"include": [
|
||||||
"1",
|
"fdm_filament_template_direct_dual_e3d"
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"long_retractions_when_ec": [
|
|
||||||
"1",
|
|
||||||
"1"
|
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20",
|
||||||
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2D 0.6 nozzle"
|
"Bambu Lab H2D 0.6 nozzle"
|
||||||
|
|||||||
@@ -8,65 +8,33 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
|
"counter_coef_2": [
|
||||||
|
"0.0124"
|
||||||
|
],
|
||||||
|
"counter_coef_3": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
|
"counter_limit_max": [
|
||||||
|
"0.3341"
|
||||||
|
],
|
||||||
|
"counter_limit_min": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
|
||||||
"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": [
|
"filament_max_volumetric_speed": [
|
||||||
"25",
|
"25",
|
||||||
"35"
|
"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": [
|
"filament_retraction_length": [
|
||||||
"0.4",
|
"0.4",
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
@@ -75,33 +43,34 @@
|
|||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
"filament_z_hop_types": [
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"Spiral Lift"
|
"Spiral Lift"
|
||||||
],
|
],
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"filament_prime_volume": [
|
||||||
"0",
|
"30"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"filament_change_length": [
|
||||||
"1",
|
"4"
|
||||||
"1"
|
],
|
||||||
|
"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": [
|
"nozzle_temperature": [
|
||||||
"260",
|
"260",
|
||||||
@@ -111,16 +80,12 @@
|
|||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2D 0.8 nozzle"
|
"Bambu Lab H2D 0.8 nozzle"
|
||||||
|
|||||||
@@ -8,119 +8,94 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
|
"counter_coef_2": [
|
||||||
|
"0.0124"
|
||||||
|
],
|
||||||
|
"counter_coef_3": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
|
"counter_limit_max": [
|
||||||
|
"0.3341"
|
||||||
|
],
|
||||||
|
"counter_limit_min": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_change_length": [
|
||||||
"nil",
|
"4"
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_cooling_before_tower": [
|
||||||
"0.95",
|
"10",
|
||||||
"0.95"
|
"10",
|
||||||
],
|
"10"
|
||||||
"filament_flush_temp": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_flush_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"20",
|
"20",
|
||||||
"35"
|
"35",
|
||||||
|
"20"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_prime_volume": [
|
||||||
"-1",
|
"30"
|
||||||
"-1"
|
|
||||||
],
|
],
|
||||||
"filament_retract_before_wipe": [
|
"filament_ramming_travel_time": [
|
||||||
"nil",
|
"0",
|
||||||
"nil"
|
"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": [
|
"filament_retraction_length": [
|
||||||
|
"0.4",
|
||||||
"0.4",
|
"0.4",
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
|
"1",
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_wipe_distance": [
|
"filament_wipe_distance": [
|
||||||
"1",
|
"1",
|
||||||
"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",
|
||||||
"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": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20",
|
||||||
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2D 0.4 nozzle"
|
"Bambu Lab H2D 0.4 nozzle"
|
||||||
|
|||||||
@@ -11,97 +11,20 @@
|
|||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
|
||||||
"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": [
|
"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": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe_distance": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"long_retractions_when_ec": [
|
|
||||||
"1",
|
|
||||||
"1"
|
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"270",
|
"270",
|
||||||
@@ -111,16 +34,12 @@
|
|||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2D Pro 0.2 nozzle"
|
"Bambu Lab H2D Pro 0.2 nozzle"
|
||||||
|
|||||||
@@ -11,62 +11,22 @@
|
|||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
|
||||||
"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": [
|
"filament_max_volumetric_speed": [
|
||||||
"25",
|
"25",
|
||||||
"35"
|
"35"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_ramming_travel_time": [
|
||||||
"-1",
|
"0",
|
||||||
"-1"
|
"0"
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_restart_extra": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_when_changing_layer": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_distances_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
"0.4",
|
"0.4",
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
@@ -75,33 +35,12 @@
|
|||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
"filament_z_hop_types": [
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"Spiral Lift"
|
"Spiral Lift"
|
||||||
],
|
],
|
||||||
"filament_extruder_variant": [
|
"include": [
|
||||||
"Direct Drive Standard",
|
"fdm_filament_template_direct_dual"
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_adaptive_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"long_retractions_when_ec": [
|
|
||||||
"1",
|
|
||||||
"1"
|
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"270",
|
"270",
|
||||||
@@ -111,16 +50,12 @@
|
|||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2D Pro 0.6 nozzle"
|
"Bambu Lab H2D Pro 0.6 nozzle"
|
||||||
|
|||||||
@@ -11,62 +11,22 @@
|
|||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
|
||||||
"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": [
|
"filament_max_volumetric_speed": [
|
||||||
"25",
|
"25",
|
||||||
"35"
|
"35"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_ramming_travel_time": [
|
||||||
"-1",
|
"0",
|
||||||
"-1"
|
"0"
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_restart_extra": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_when_changing_layer": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_distances_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
"0.4",
|
"0.4",
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
@@ -75,33 +35,12 @@
|
|||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
"filament_z_hop_types": [
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"Spiral Lift"
|
"Spiral Lift"
|
||||||
],
|
],
|
||||||
"filament_extruder_variant": [
|
"include": [
|
||||||
"Direct Drive Standard",
|
"fdm_filament_template_direct_dual"
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_adaptive_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"long_retractions_when_ec": [
|
|
||||||
"1",
|
|
||||||
"1"
|
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"260",
|
"260",
|
||||||
@@ -111,16 +50,12 @@
|
|||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2D Pro 0.8 nozzle"
|
"Bambu Lab H2D Pro 0.8 nozzle"
|
||||||
|
|||||||
@@ -11,62 +11,22 @@
|
|||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
|
||||||
"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": [
|
"filament_max_volumetric_speed": [
|
||||||
"20",
|
"20",
|
||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_ramming_travel_time": [
|
||||||
"-1",
|
"0",
|
||||||
"-1"
|
"0"
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_restart_extra": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_when_changing_layer": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_distances_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
"0.4",
|
"0.4",
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
@@ -75,33 +35,12 @@
|
|||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
"filament_z_hop_types": [
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"Spiral Lift"
|
"Spiral Lift"
|
||||||
],
|
],
|
||||||
"filament_extruder_variant": [
|
"include": [
|
||||||
"Direct Drive Standard",
|
"fdm_filament_template_direct_dual"
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_adaptive_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"long_retractions_when_ec": [
|
|
||||||
"1",
|
|
||||||
"1"
|
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"270",
|
"270",
|
||||||
@@ -111,16 +50,12 @@
|
|||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2D Pro 0.4 nozzle"
|
"Bambu Lab H2D Pro 0.4 nozzle"
|
||||||
|
|||||||
@@ -8,99 +8,60 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
|
"counter_coef_2": [
|
||||||
|
"0.0124"
|
||||||
|
],
|
||||||
|
"counter_coef_3": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
|
"counter_limit_min": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
|
"counter_limit_max": [
|
||||||
|
"0.3341"
|
||||||
|
],
|
||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"40"
|
"40"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.95",
|
|
||||||
"0.95"
|
|
||||||
],
|
|
||||||
"filament_flush_temp": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_flush_volumetric_speed": [
|
"filament_flush_volumetric_speed": [
|
||||||
"3",
|
"3",
|
||||||
"3"
|
"3"
|
||||||
],
|
],
|
||||||
"filament_long_retractions_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"2",
|
"2",
|
||||||
"2"
|
"2"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_prime_volume": [
|
||||||
"-1",
|
"30"
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_restart_extra": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_when_changing_layer": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_distances_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe_distance": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"filament_change_length": [
|
||||||
"0",
|
"4"
|
||||||
"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"
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -127,9 +88,9 @@
|
|||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2S 0.2 nozzle"
|
"Bambu Lab H2S 0.2 nozzle"
|
||||||
|
|||||||
@@ -8,106 +8,89 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
|
"counter_coef_2": [
|
||||||
|
"0.0124"
|
||||||
|
],
|
||||||
|
"counter_coef_3": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
|
"counter_limit_min": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
|
"counter_limit_max": [
|
||||||
|
"0.3341"
|
||||||
|
],
|
||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_change_length": [
|
||||||
"nil",
|
"4"
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_cooling_before_tower": [
|
||||||
"0.95",
|
"10",
|
||||||
"0.95"
|
"10",
|
||||||
],
|
"10"
|
||||||
"filament_flush_temp": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_flush_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"25",
|
"25",
|
||||||
"35"
|
"35",
|
||||||
|
"25"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_prime_volume": [
|
||||||
"-1",
|
"30"
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_restart_extra": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_when_changing_layer": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_distances_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
|
"0.4",
|
||||||
"0.4",
|
"0.4",
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
|
"1",
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_wipe_distance": [
|
"filament_wipe_distance": [
|
||||||
|
"1",
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
"filament_z_hop_types": [
|
||||||
|
"Spiral Lift",
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"Spiral Lift"
|
"Spiral Lift"
|
||||||
],
|
],
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_adaptive_volumetric_speed": [
|
|
||||||
"0",
|
"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": [
|
"long_retractions_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
@@ -118,15 +101,17 @@
|
|||||||
"2"
|
"2"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
"retraction_distances_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20",
|
||||||
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2S 0.6 nozzle"
|
"Bambu Lab H2S 0.6 nozzle"
|
||||||
|
|||||||
@@ -8,65 +8,33 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
|
"counter_coef_2": [
|
||||||
|
"0.0124"
|
||||||
|
],
|
||||||
|
"counter_coef_3": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
|
"counter_limit_min": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
|
"counter_limit_max": [
|
||||||
|
"0.3341"
|
||||||
|
],
|
||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
|
||||||
"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": [
|
"filament_max_volumetric_speed": [
|
||||||
"25",
|
"25",
|
||||||
"35"
|
"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": [
|
"filament_retraction_length": [
|
||||||
"0.4",
|
"0.4",
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
@@ -75,29 +43,34 @@
|
|||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_z_hop": [
|
"filament_prime_volume": [
|
||||||
"nil",
|
"30"
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_z_hop_types": [
|
"filament_z_hop_types": [
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"Spiral Lift"
|
"Spiral Lift"
|
||||||
],
|
],
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"filament_change_length": [
|
||||||
"0",
|
"4"
|
||||||
"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"
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -124,9 +97,9 @@
|
|||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2S 0.8 nozzle"
|
"Bambu Lab H2S 0.8 nozzle"
|
||||||
|
|||||||
@@ -8,106 +8,89 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
|
"counter_coef_2": [
|
||||||
|
"0.0124"
|
||||||
|
],
|
||||||
|
"counter_coef_3": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
|
"counter_limit_min": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
|
"counter_limit_max": [
|
||||||
|
"0.3341"
|
||||||
|
],
|
||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_change_length": [
|
||||||
"nil",
|
"4"
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_cooling_before_tower": [
|
||||||
"0.95",
|
"10",
|
||||||
"0.95"
|
"10",
|
||||||
],
|
"10"
|
||||||
"filament_flush_temp": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_flush_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"20",
|
"20",
|
||||||
"35"
|
"35",
|
||||||
|
"20"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_prime_volume": [
|
||||||
"-1",
|
"30"
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_restart_extra": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_when_changing_layer": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_distances_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
|
"0.4",
|
||||||
"0.4",
|
"0.4",
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
|
"1",
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_wipe_distance": [
|
"filament_wipe_distance": [
|
||||||
|
"1",
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
"filament_z_hop_types": [
|
||||||
|
"Spiral Lift",
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"Spiral Lift"
|
"Spiral Lift"
|
||||||
],
|
],
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_adaptive_volumetric_speed": [
|
|
||||||
"0",
|
"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": [
|
"long_retractions_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
@@ -118,15 +101,17 @@
|
|||||||
"2"
|
"2"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
"retraction_distances_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20",
|
||||||
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2S 0.4 nozzle"
|
"Bambu Lab H2S 0.4 nozzle"
|
||||||
|
|||||||
@@ -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"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -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"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -11,132 +11,55 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
|
"counter_coef_2": [
|
||||||
|
"0.0124"
|
||||||
|
],
|
||||||
|
"counter_coef_3": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
|
"counter_limit_max": [
|
||||||
|
"0.3341"
|
||||||
|
],
|
||||||
|
"counter_limit_min": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"40"
|
"40"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.95",
|
|
||||||
"0.95"
|
|
||||||
],
|
|
||||||
"filament_flush_temp": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_flush_volumetric_speed": [
|
"filament_flush_volumetric_speed": [
|
||||||
"3",
|
"3",
|
||||||
"3"
|
"3"
|
||||||
],
|
],
|
||||||
"filament_long_retractions_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
"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": [
|
|
||||||
"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": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time_nc": [
|
"filament_retraction_distances_when_cut": [
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_enable_overhang_speed": [
|
|
||||||
"1",
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_overhang_1_4_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_overhang_2_4_speed": [
|
|
||||||
"50",
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"filament_overhang_3_4_speed": [
|
|
||||||
"30",
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"filament_overhang_4_4_speed": [
|
|
||||||
"10",
|
"10",
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_overhang_totally_speed": [
|
"hole_coef_2": [
|
||||||
"10",
|
"-0.0008"
|
||||||
"10"
|
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"hole_coef_3": [
|
||||||
"0",
|
"0.1319"
|
||||||
"0"
|
],
|
||||||
|
"hole_limit_max": [
|
||||||
|
"0.1319"
|
||||||
|
],
|
||||||
|
"hole_limit_min": [
|
||||||
|
"0.1119"
|
||||||
|
],
|
||||||
|
"include": [
|
||||||
|
"fdm_filament_template_direct_dual"
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -150,10 +73,6 @@
|
|||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
"override_process_overhang_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"retraction_distances_when_ec": [
|
"retraction_distances_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
@@ -161,9 +80,9 @@
|
|||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab P2S 0.2 nozzle"
|
"Bambu Lab P2S 0.2 nozzle"
|
||||||
|
|||||||
@@ -5,165 +5,96 @@
|
|||||||
"from": "system",
|
"from": "system",
|
||||||
"setting_id": "GFSB00_36",
|
"setting_id": "GFSB00_36",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"activate_air_filtration": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
|
"counter_coef_2": [
|
||||||
|
"0.0124"
|
||||||
|
],
|
||||||
|
"counter_coef_3": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
|
"counter_limit_min": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
|
"counter_limit_max": [
|
||||||
|
"0.3341"
|
||||||
|
],
|
||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10",
|
||||||
],
|
"10"
|
||||||
"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": [
|
"filament_max_volumetric_speed": [
|
||||||
"16",
|
"16",
|
||||||
"35"
|
"35",
|
||||||
],
|
"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": [
|
"filament_retraction_distances_when_cut": [
|
||||||
|
"10",
|
||||||
"10",
|
"10",
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
|
"0.4",
|
||||||
"0.4",
|
"0.4",
|
||||||
"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": [
|
"filament_z_hop_types": [
|
||||||
|
"Spiral Lift",
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"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": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time_nc": [
|
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_enable_overhang_speed": [
|
"hole_coef_2": [
|
||||||
"1",
|
"-0.0008"
|
||||||
"1"
|
|
||||||
],
|
],
|
||||||
"filament_overhang_1_4_speed": [
|
"hole_coef_3": [
|
||||||
"0",
|
"0.1319"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_overhang_2_4_speed": [
|
"hole_limit_min": [
|
||||||
"50",
|
"0.1119"
|
||||||
"50"
|
|
||||||
],
|
],
|
||||||
"filament_overhang_3_4_speed": [
|
"hole_limit_max": [
|
||||||
"30",
|
"0.1319"
|
||||||
"30"
|
|
||||||
],
|
],
|
||||||
"filament_overhang_4_4_speed": [
|
"include": [
|
||||||
"10",
|
"fdm_filament_template_direct_dual_e3d"
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_overhang_totally_speed": [
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_adaptive_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
"override_process_overhang_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"retraction_distances_when_ec": [
|
"retraction_distances_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20",
|
||||||
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab P2S 0.6 nozzle"
|
"Bambu Lab P2S 0.6 nozzle"
|
||||||
|
|||||||
@@ -11,52 +11,32 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
|
"counter_coef_2": [
|
||||||
|
"0.0124"
|
||||||
|
],
|
||||||
|
"counter_coef_3": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
|
"counter_limit_max": [
|
||||||
|
"0.3341"
|
||||||
|
],
|
||||||
|
"counter_limit_min": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
|
||||||
"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": [
|
"filament_max_volumetric_speed": [
|
||||||
"18",
|
"18",
|
||||||
"35"
|
"35"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_ramming_travel_time": [
|
||||||
"-1",
|
"0",
|
||||||
"-1"
|
"0"
|
||||||
],
|
|
||||||
"filament_ramming_volumetric_speed_nc": [
|
|
||||||
"-1",
|
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_restart_extra": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_when_changing_layer": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_retraction_distances_when_cut": [
|
"filament_retraction_distances_when_cut": [
|
||||||
"10",
|
"10",
|
||||||
@@ -66,77 +46,24 @@
|
|||||||
"0.4",
|
"0.4",
|
||||||
"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": [
|
"filament_z_hop_types": [
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"Spiral Lift"
|
"Spiral Lift"
|
||||||
],
|
],
|
||||||
"filament_extruder_variant": [
|
"hole_coef_2": [
|
||||||
"Direct Drive Standard",
|
"-0.0008"
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
],
|
||||||
"filament_pre_cooling_temperature": [
|
"hole_coef_3": [
|
||||||
"0",
|
"0.1319"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_pre_cooling_temperature_nc": [
|
"hole_limit_max": [
|
||||||
"0",
|
"0.1319"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time": [
|
"hole_limit_min": [
|
||||||
"0",
|
"0.1119"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time_nc": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_enable_overhang_speed": [
|
|
||||||
"1",
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_overhang_1_4_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_overhang_2_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": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -150,10 +77,6 @@
|
|||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
"override_process_overhang_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"retraction_distances_when_ec": [
|
"retraction_distances_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
@@ -161,13 +84,6 @@
|
|||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"slow_down_min_speed": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"volumetric_speed_coefficients": [
|
|
||||||
"0 0 0 0 0 0",
|
|
||||||
"0 0 0 0 0 0"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab P2S 0.8 nozzle"
|
"Bambu Lab P2S 0.8 nozzle"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -11,159 +11,93 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
|
"counter_coef_2": [
|
||||||
|
"0.0124"
|
||||||
|
],
|
||||||
|
"counter_coef_3": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
|
"counter_limit_min": [
|
||||||
|
"0.0241"
|
||||||
|
],
|
||||||
|
"counter_limit_max": [
|
||||||
|
"0.3341"
|
||||||
|
],
|
||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10",
|
||||||
],
|
"10"
|
||||||
"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": [
|
"filament_max_volumetric_speed": [
|
||||||
"16",
|
"16",
|
||||||
"25"
|
"25",
|
||||||
],
|
"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": [
|
"filament_retraction_distances_when_cut": [
|
||||||
|
"10",
|
||||||
"10",
|
"10",
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
|
"0.4",
|
||||||
"0.4",
|
"0.4",
|
||||||
"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": [
|
"filament_z_hop_types": [
|
||||||
|
"Spiral Lift",
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"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": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time_nc": [
|
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_enable_overhang_speed": [
|
"hole_coef_2": [
|
||||||
"1",
|
"-0.0008"
|
||||||
"1"
|
|
||||||
],
|
],
|
||||||
"filament_overhang_1_4_speed": [
|
"hole_coef_3": [
|
||||||
"0",
|
"0.1319"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_overhang_2_4_speed": [
|
"hole_limit_min": [
|
||||||
"50",
|
"0.1119"
|
||||||
"50"
|
|
||||||
],
|
],
|
||||||
"filament_overhang_3_4_speed": [
|
"hole_limit_max": [
|
||||||
"30",
|
"0.1319"
|
||||||
"30"
|
|
||||||
],
|
],
|
||||||
"filament_overhang_4_4_speed": [
|
"include": [
|
||||||
"10",
|
"fdm_filament_template_direct_dual_e3d"
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_overhang_totally_speed": [
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_adaptive_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
"override_process_overhang_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"retraction_distances_when_ec": [
|
"retraction_distances_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20",
|
||||||
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab P2S 0.4 nozzle"
|
"Bambu Lab P2S 0.4 nozzle"
|
||||||
|
|||||||
@@ -20,81 +20,12 @@
|
|||||||
"18",
|
"18",
|
||||||
"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": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -115,9 +46,9 @@
|
|||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab X1 Carbon 0.2 nozzle",
|
"Bambu Lab X1 Carbon 0.2 nozzle",
|
||||||
|
|||||||
@@ -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"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -20,81 +20,16 @@
|
|||||||
"18",
|
"18",
|
||||||
"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": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"filament_retraction_length": [
|
||||||
"0",
|
"0.4",
|
||||||
"0"
|
"nil"
|
||||||
|
],
|
||||||
|
"include": [
|
||||||
|
"fdm_filament_template_direct_dual"
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -115,13 +50,6 @@
|
|||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"slow_down_min_speed": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"volumetric_speed_coefficients": [
|
|
||||||
"0 0 0 0 0 0",
|
|
||||||
"0 0 0 0 0 0"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||||
"Bambu Lab X1 0.8 nozzle",
|
"Bambu Lab X1 0.8 nozzle",
|
||||||
|
|||||||
@@ -8,93 +8,40 @@
|
|||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil",
|
||||||
|
"40"
|
||||||
|
],
|
||||||
"filament_long_retractions_when_cut": [
|
"filament_long_retractions_when_cut": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"nil"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"16",
|
"16",
|
||||||
"16"
|
"25"
|
||||||
],
|
],
|
||||||
"filament_retraction_distances_when_cut": [
|
"filament_retraction_distances_when_cut": [
|
||||||
"18",
|
"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"
|
"nil"
|
||||||
],
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
"nil",
|
"0.4",
|
||||||
"nil"
|
"0.4"
|
||||||
],
|
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_retraction_speed": [
|
"filament_retraction_speed": [
|
||||||
"nil",
|
"nil",
|
||||||
"nil"
|
"40"
|
||||||
],
|
|
||||||
"filament_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe_distance": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_z_hop": [
|
"filament_z_hop": [
|
||||||
"nil",
|
"nil",
|
||||||
"nil"
|
"0.6"
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -115,16 +62,13 @@
|
|||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||||
"Bambu Lab X1 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 0.6 nozzle",
|
|
||||||
"Bambu Lab P1S 0.4 nozzle",
|
|
||||||
"Bambu Lab P1S 0.6 nozzle"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -8,22 +8,6 @@
|
|||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"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": [
|
"filament_long_retractions_when_cut": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
@@ -32,69 +16,16 @@
|
|||||||
"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": [
|
"filament_retraction_distances_when_cut": [
|
||||||
"18",
|
"18",
|
||||||
"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": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -115,9 +46,9 @@
|
|||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab X1E 0.2 nozzle"
|
"Bambu Lab X1E 0.2 nozzle"
|
||||||
|
|||||||
@@ -8,22 +8,6 @@
|
|||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"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": [
|
"filament_long_retractions_when_cut": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
@@ -32,69 +16,20 @@
|
|||||||
"18",
|
"18",
|
||||||
"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": [
|
"filament_retraction_distances_when_cut": [
|
||||||
"18",
|
"18",
|
||||||
"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": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"filament_retraction_length": [
|
||||||
"0",
|
"0.4",
|
||||||
"0"
|
"nil"
|
||||||
|
],
|
||||||
|
"include": [
|
||||||
|
"fdm_filament_template_direct_dual"
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -115,13 +50,6 @@
|
|||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"slow_down_min_speed": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"volumetric_speed_coefficients": [
|
|
||||||
"0 0 0 0 0 0",
|
|
||||||
"0 0 0 0 0 0"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab X1E 0.8 nozzle"
|
"Bambu Lab X1E 0.8 nozzle"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -8,22 +8,6 @@
|
|||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"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": [
|
"filament_long_retractions_when_cut": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
@@ -32,69 +16,20 @@
|
|||||||
"16",
|
"16",
|
||||||
"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": [
|
"filament_retraction_distances_when_cut": [
|
||||||
"18",
|
"18",
|
||||||
"18"
|
"18"
|
||||||
],
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
"nil",
|
"0.4",
|
||||||
"nil"
|
"nil"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe_distance": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -115,9 +50,9 @@
|
|||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab X1E 0.4 nozzle",
|
"Bambu Lab X1E 0.4 nozzle",
|
||||||
|
|||||||
@@ -5,222 +5,6 @@
|
|||||||
"from": "system",
|
"from": "system",
|
||||||
"setting_id": "GFSB00_20",
|
"setting_id": "GFSB00_20",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"filament_adaptive_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_before_tower": [
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_enable_overhang_speed": [
|
|
||||||
"1",
|
|
||||||
"1",
|
|
||||||
"1",
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_extruder_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": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
@@ -239,6 +23,12 @@
|
|||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"80"
|
"80"
|
||||||
],
|
],
|
||||||
|
"filament_cooling_before_tower": [
|
||||||
|
"10",
|
||||||
|
"10",
|
||||||
|
"10",
|
||||||
|
"10"
|
||||||
|
],
|
||||||
"filament_extruder_compatibility": [
|
"filament_extruder_compatibility": [
|
||||||
"24"
|
"24"
|
||||||
],
|
],
|
||||||
@@ -248,6 +38,12 @@
|
|||||||
"0.95",
|
"0.95",
|
||||||
"0.95"
|
"0.95"
|
||||||
],
|
],
|
||||||
|
"filament_flush_volumetric_speed": [
|
||||||
|
"3",
|
||||||
|
"3",
|
||||||
|
"3",
|
||||||
|
"3"
|
||||||
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"2",
|
"2",
|
||||||
"2",
|
"2",
|
||||||
@@ -260,9 +56,33 @@
|
|||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
|
"filament_retraction_distances_when_cut": [
|
||||||
|
"10",
|
||||||
|
"10",
|
||||||
|
"10",
|
||||||
|
"10"
|
||||||
|
],
|
||||||
"filament_tower_interface_print_temp": [
|
"filament_tower_interface_print_temp": [
|
||||||
"270"
|
"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": [
|
"hole_coef_2": [
|
||||||
"-0.0008"
|
"-0.0008"
|
||||||
],
|
],
|
||||||
@@ -275,6 +95,9 @@
|
|||||||
"hole_limit_min": [
|
"hole_limit_min": [
|
||||||
"0.1119"
|
"0.1119"
|
||||||
],
|
],
|
||||||
|
"include": [
|
||||||
|
"fdm_filament_template_direct_bowden"
|
||||||
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"270",
|
"270",
|
||||||
"270",
|
"270",
|
||||||
@@ -287,9 +110,21 @@
|
|||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
|
"retraction_distances_when_ec": [
|
||||||
|
"3",
|
||||||
|
"3",
|
||||||
|
"4",
|
||||||
|
"4"
|
||||||
|
],
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20",
|
||||||
|
"20",
|
||||||
|
"20",
|
||||||
|
"20"
|
||||||
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab X2D 0.2 nozzle"
|
"Bambu Lab X2D 0.2 nozzle"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -5,222 +5,6 @@
|
|||||||
"from": "system",
|
"from": "system",
|
||||||
"setting_id": "GFSB00_09",
|
"setting_id": "GFSB00_09",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"filament_adaptive_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_before_tower": [
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_enable_overhang_speed": [
|
|
||||||
"1",
|
|
||||||
"1",
|
|
||||||
"1",
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow",
|
|
||||||
"Bowden Standard",
|
|
||||||
"Bowden High Flow"
|
|
||||||
],
|
|
||||||
"filament_flush_temp": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_flush_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_overhang_1_4_speed": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_overhang_2_4_speed": [
|
|
||||||
"50",
|
|
||||||
"50",
|
|
||||||
"50",
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"filament_overhang_3_4_speed": [
|
|
||||||
"30",
|
|
||||||
"30",
|
|
||||||
"30",
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"filament_overhang_4_4_speed": [
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_overhang_totally_speed": [
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_bridge_speed": [
|
|
||||||
"25",
|
|
||||||
"25",
|
|
||||||
"25",
|
|
||||||
"25"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature_nc": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time_nc": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_retract_length_nc": [
|
|
||||||
"14",
|
|
||||||
"14",
|
|
||||||
"14",
|
|
||||||
"14"
|
|
||||||
],
|
|
||||||
"filament_ramming_volumetric_speed": [
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_ramming_volumetric_speed_nc": [
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"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": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
@@ -239,10 +23,20 @@
|
|||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
|
"filament_cooling_before_tower": [
|
||||||
|
"10",
|
||||||
|
"10",
|
||||||
|
"10",
|
||||||
|
"10",
|
||||||
|
"10",
|
||||||
|
"10"
|
||||||
|
],
|
||||||
"filament_extruder_compatibility": [
|
"filament_extruder_compatibility": [
|
||||||
"24"
|
"24"
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
|
"0.95",
|
||||||
|
"0.95",
|
||||||
"0.95",
|
"0.95",
|
||||||
"0.95",
|
"0.95",
|
||||||
"0.95",
|
"0.95",
|
||||||
@@ -252,17 +46,61 @@
|
|||||||
"16",
|
"16",
|
||||||
"25",
|
"25",
|
||||||
"16",
|
"16",
|
||||||
"18"
|
"16",
|
||||||
|
"18",
|
||||||
|
"16"
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
|
"0",
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"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": [
|
"filament_tower_interface_print_temp": [
|
||||||
"270"
|
"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": [
|
"hole_coef_2": [
|
||||||
"-0.0008"
|
"-0.0008"
|
||||||
],
|
],
|
||||||
@@ -275,21 +113,47 @@
|
|||||||
"hole_limit_min": [
|
"hole_limit_min": [
|
||||||
"0.1119"
|
"0.1119"
|
||||||
],
|
],
|
||||||
|
"include": [
|
||||||
|
"fdm_filament_template_direct_bowden_e3d"
|
||||||
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260",
|
||||||
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
|
"retraction_distances_when_ec": [
|
||||||
|
"3",
|
||||||
|
"3",
|
||||||
|
"3",
|
||||||
|
"4",
|
||||||
|
"4",
|
||||||
|
"4"
|
||||||
|
],
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20",
|
||||||
|
"20",
|
||||||
|
"20",
|
||||||
|
"20",
|
||||||
|
"20",
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab X2D 0.4 nozzle"
|
"Bambu Lab X2D 0.4 nozzle"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -5,222 +5,6 @@
|
|||||||
"from": "system",
|
"from": "system",
|
||||||
"setting_id": "GFSB00_30",
|
"setting_id": "GFSB00_30",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"filament_adaptive_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_before_tower": [
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_enable_overhang_speed": [
|
|
||||||
"1",
|
|
||||||
"1",
|
|
||||||
"1",
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow",
|
|
||||||
"Bowden Standard",
|
|
||||||
"Bowden High Flow"
|
|
||||||
],
|
|
||||||
"filament_flush_temp": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_flush_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_overhang_1_4_speed": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_overhang_2_4_speed": [
|
|
||||||
"50",
|
|
||||||
"50",
|
|
||||||
"50",
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"filament_overhang_3_4_speed": [
|
|
||||||
"30",
|
|
||||||
"30",
|
|
||||||
"30",
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"filament_overhang_4_4_speed": [
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_overhang_totally_speed": [
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_bridge_speed": [
|
|
||||||
"25",
|
|
||||||
"25",
|
|
||||||
"25",
|
|
||||||
"25"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature_nc": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time_nc": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_retract_length_nc": [
|
|
||||||
"14",
|
|
||||||
"14",
|
|
||||||
"14",
|
|
||||||
"14"
|
|
||||||
],
|
|
||||||
"filament_ramming_volumetric_speed": [
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_ramming_volumetric_speed_nc": [
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"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": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
@@ -239,6 +23,12 @@
|
|||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
|
"filament_cooling_before_tower": [
|
||||||
|
"10",
|
||||||
|
"10",
|
||||||
|
"10",
|
||||||
|
"10"
|
||||||
|
],
|
||||||
"filament_extruder_compatibility": [
|
"filament_extruder_compatibility": [
|
||||||
"24"
|
"24"
|
||||||
],
|
],
|
||||||
@@ -260,9 +50,39 @@
|
|||||||
"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": [
|
"filament_tower_interface_print_temp": [
|
||||||
"270"
|
"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": [
|
"hole_coef_2": [
|
||||||
"-0.0008"
|
"-0.0008"
|
||||||
],
|
],
|
||||||
@@ -275,6 +95,9 @@
|
|||||||
"hole_limit_min": [
|
"hole_limit_min": [
|
||||||
"0.1119"
|
"0.1119"
|
||||||
],
|
],
|
||||||
|
"include": [
|
||||||
|
"fdm_filament_template_direct_bowden"
|
||||||
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"270",
|
"270",
|
||||||
"270",
|
"270",
|
||||||
@@ -287,9 +110,21 @@
|
|||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
|
"retraction_distances_when_ec": [
|
||||||
|
"3",
|
||||||
|
"3",
|
||||||
|
"4",
|
||||||
|
"4"
|
||||||
|
],
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20",
|
||||||
|
"20",
|
||||||
|
"20",
|
||||||
|
"20"
|
||||||
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab X2D 0.8 nozzle"
|
"Bambu Lab X2D 0.8 nozzle"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -5,222 +5,6 @@
|
|||||||
"from": "system",
|
"from": "system",
|
||||||
"setting_id": "GFSB00_19",
|
"setting_id": "GFSB00_19",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"filament_adaptive_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_before_tower": [
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_enable_overhang_speed": [
|
|
||||||
"1",
|
|
||||||
"1",
|
|
||||||
"1",
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow",
|
|
||||||
"Bowden Standard",
|
|
||||||
"Bowden High Flow"
|
|
||||||
],
|
|
||||||
"filament_flush_temp": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_flush_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_overhang_1_4_speed": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_overhang_2_4_speed": [
|
|
||||||
"50",
|
|
||||||
"50",
|
|
||||||
"50",
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"filament_overhang_3_4_speed": [
|
|
||||||
"30",
|
|
||||||
"30",
|
|
||||||
"30",
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"filament_overhang_4_4_speed": [
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_overhang_totally_speed": [
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_bridge_speed": [
|
|
||||||
"25",
|
|
||||||
"25",
|
|
||||||
"25",
|
|
||||||
"25"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature_nc": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time_nc": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_retract_length_nc": [
|
|
||||||
"14",
|
|
||||||
"14",
|
|
||||||
"14",
|
|
||||||
"14"
|
|
||||||
],
|
|
||||||
"filament_ramming_volumetric_speed": [
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_ramming_volumetric_speed_nc": [
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"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": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
@@ -239,10 +23,20 @@
|
|||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
|
"filament_cooling_before_tower": [
|
||||||
|
"10",
|
||||||
|
"10",
|
||||||
|
"10",
|
||||||
|
"10",
|
||||||
|
"10",
|
||||||
|
"10"
|
||||||
|
],
|
||||||
"filament_extruder_compatibility": [
|
"filament_extruder_compatibility": [
|
||||||
"24"
|
"24"
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
|
"0.95",
|
||||||
|
"0.95",
|
||||||
"0.95",
|
"0.95",
|
||||||
"0.95",
|
"0.95",
|
||||||
"0.95",
|
"0.95",
|
||||||
@@ -252,17 +46,61 @@
|
|||||||
"16",
|
"16",
|
||||||
"35",
|
"35",
|
||||||
"16",
|
"16",
|
||||||
|
"16",
|
||||||
|
"16",
|
||||||
"16"
|
"16"
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
|
"0",
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"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": [
|
"filament_tower_interface_print_temp": [
|
||||||
"270"
|
"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": [
|
"hole_coef_2": [
|
||||||
"-0.0008"
|
"-0.0008"
|
||||||
],
|
],
|
||||||
@@ -275,21 +113,44 @@
|
|||||||
"hole_limit_min": [
|
"hole_limit_min": [
|
||||||
"0.1119"
|
"0.1119"
|
||||||
],
|
],
|
||||||
|
"include": [
|
||||||
|
"fdm_filament_template_direct_bowden_e3d"
|
||||||
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260",
|
||||||
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
|
"retraction_distances_when_ec": [
|
||||||
|
"3",
|
||||||
|
"3",
|
||||||
|
"3",
|
||||||
|
"4",
|
||||||
|
"4",
|
||||||
|
"4"
|
||||||
|
],
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20",
|
||||||
|
"20",
|
||||||
|
"20",
|
||||||
|
"20",
|
||||||
|
"20",
|
||||||
|
"20"
|
||||||
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab X2D 0.6 nozzle"
|
"Bambu Lab X2D 0.6 nozzle"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
"instantiation": "false",
|
"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.",
|
"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": [
|
"filament_cost": [
|
||||||
"24.99"
|
"15.99"
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
"0.95"
|
"0.95"
|
||||||
|
|||||||
@@ -9,10 +9,12 @@
|
|||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_cooling_before_tower": [
|
"filament_cooling_before_tower": [
|
||||||
|
"10",
|
||||||
"10",
|
"10",
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
|
"12",
|
||||||
"12",
|
"12",
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
@@ -23,14 +25,17 @@
|
|||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
"filament_pre_cooling_temperature_nc": [
|
"filament_pre_cooling_temperature_nc": [
|
||||||
|
"230",
|
||||||
"230",
|
"230",
|
||||||
"230"
|
"230"
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time_nc": [
|
"filament_ramming_travel_time_nc": [
|
||||||
|
"1",
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
@@ -44,118 +49,25 @@
|
|||||||
"4"
|
"4"
|
||||||
],
|
],
|
||||||
"filament_preheat_temperature_delta": [
|
"filament_preheat_temperature_delta": [
|
||||||
|
"20",
|
||||||
"20",
|
"20",
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual_e3d"
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"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": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
"slow_down_min_speed": [
|
"slow_down_min_speed": [
|
||||||
|
"20",
|
||||||
"20",
|
"20",
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -9,10 +9,12 @@
|
|||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_cooling_before_tower": [
|
"filament_cooling_before_tower": [
|
||||||
|
"10",
|
||||||
"10",
|
"10",
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
|
"12",
|
||||||
"12",
|
"12",
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
@@ -23,14 +25,17 @@
|
|||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
"filament_pre_cooling_temperature_nc": [
|
"filament_pre_cooling_temperature_nc": [
|
||||||
|
"230",
|
||||||
"230",
|
"230",
|
||||||
"230"
|
"230"
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time_nc": [
|
"filament_ramming_travel_time_nc": [
|
||||||
|
"1",
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
@@ -44,118 +49,25 @@
|
|||||||
"4"
|
"4"
|
||||||
],
|
],
|
||||||
"filament_preheat_temperature_delta": [
|
"filament_preheat_temperature_delta": [
|
||||||
|
"20",
|
||||||
"20",
|
"20",
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual_e3d"
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"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": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
"slow_down_min_speed": [
|
"slow_down_min_speed": [
|
||||||
|
"20",
|
||||||
"20",
|
"20",
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -8,113 +8,44 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10",
|
||||||
],
|
"10"
|
||||||
"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": [
|
"filament_max_volumetric_speed": [
|
||||||
|
"12",
|
||||||
"12",
|
"12",
|
||||||
"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": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_adaptive_volumetric_speed": [
|
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"filament_prime_volume": [
|
||||||
"1",
|
"30"
|
||||||
"1"
|
],
|
||||||
|
"filament_change_length": [
|
||||||
|
"4"
|
||||||
|
],
|
||||||
|
"include": [
|
||||||
|
"fdm_filament_template_direct_dual_e3d"
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
"slow_down_min_speed": [
|
||||||
"10",
|
"20",
|
||||||
"10"
|
"20",
|
||||||
],
|
"20"
|
||||||
"volumetric_speed_coefficients": [
|
|
||||||
"0 0 0 0 0 0",
|
|
||||||
"0 0 0 0 0 0"
|
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2D 0.4 nozzle",
|
"Bambu Lab H2D 0.4 nozzle",
|
||||||
|
|||||||
@@ -8,97 +8,20 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
|
||||||
"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": [
|
"filament_max_volumetric_speed": [
|
||||||
"12",
|
"12",
|
||||||
"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": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"long_retractions_when_ec": [
|
|
||||||
"1",
|
|
||||||
"1"
|
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"270",
|
"270",
|
||||||
@@ -108,13 +31,9 @@
|
|||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
"slow_down_min_speed": [
|
||||||
"10",
|
"20",
|
||||||
"10"
|
"20"
|
||||||
],
|
|
||||||
"volumetric_speed_coefficients": [
|
|
||||||
"0 0 0 0 0 0",
|
|
||||||
"0 0 0 0 0 0"
|
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||||
|
|||||||
@@ -8,113 +8,54 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10",
|
||||||
],
|
"10"
|
||||||
"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": [
|
"filament_max_volumetric_speed": [
|
||||||
|
"12",
|
||||||
"12",
|
"12",
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_prime_volume": [
|
||||||
"-1",
|
"30"
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_restart_extra": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_when_changing_layer": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_distances_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe_distance": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_adaptive_volumetric_speed": [
|
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
|
"filament_change_length": [
|
||||||
|
"4"
|
||||||
|
],
|
||||||
|
"include": [
|
||||||
|
"fdm_filament_template_direct_dual_e3d"
|
||||||
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
"retraction_distances_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20",
|
||||||
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2S 0.4 nozzle",
|
"Bambu Lab H2S 0.4 nozzle",
|
||||||
|
|||||||
@@ -9,89 +9,20 @@
|
|||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_retraction_distances_when_cut": [
|
|
||||||
"18",
|
|
||||||
"18"
|
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.95",
|
|
||||||
"0.95"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12",
|
"12",
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_retraction_distances_when_cut": [
|
||||||
"nil",
|
"18",
|
||||||
"nil"
|
"18"
|
||||||
],
|
|
||||||
"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": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -109,9 +40,9 @@
|
|||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab P1P 0.8 nozzle",
|
"Bambu Lab P1P 0.8 nozzle",
|
||||||
|
|||||||
@@ -11,153 +11,53 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10",
|
||||||
],
|
"10"
|
||||||
"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": [
|
"filament_max_volumetric_speed": [
|
||||||
|
"12",
|
||||||
"12",
|
"12",
|
||||||
"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": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time_nc": [
|
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_enable_overhang_speed": [
|
"filament_retraction_distances_when_cut": [
|
||||||
"1",
|
"10",
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_overhang_1_4_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_overhang_2_4_speed": [
|
|
||||||
"50",
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"filament_overhang_3_4_speed": [
|
|
||||||
"30",
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"filament_overhang_4_4_speed": [
|
|
||||||
"10",
|
"10",
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_overhang_totally_speed": [
|
"include": [
|
||||||
"10",
|
"fdm_filament_template_direct_dual_e3d"
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_adaptive_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"260"
|
"260"
|
||||||
],
|
],
|
||||||
"override_process_overhang_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"retraction_distances_when_ec": [
|
"retraction_distances_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20",
|
||||||
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab P2S 0.4 nozzle",
|
"Bambu Lab P2S 0.4 nozzle",
|
||||||
|
|||||||
@@ -9,89 +9,20 @@
|
|||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_retraction_distances_when_cut": [
|
|
||||||
"18",
|
|
||||||
"18"
|
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.95",
|
|
||||||
"0.95"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12",
|
"12",
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_retraction_distances_when_cut": [
|
||||||
"nil",
|
"18",
|
||||||
"nil"
|
"18"
|
||||||
],
|
|
||||||
"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": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -109,9 +40,9 @@
|
|||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab P1S 0.4 nozzle",
|
"Bambu Lab P1S 0.4 nozzle",
|
||||||
|
|||||||
@@ -5,258 +5,95 @@
|
|||||||
"from": "system",
|
"from": "system",
|
||||||
"setting_id": "GFSB50_06",
|
"setting_id": "GFSB50_06",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"filament_adaptive_volumetric_speed": [
|
"chamber_temperatures": [
|
||||||
"0",
|
"60"
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_cooling_before_tower": [
|
"filament_cooling_before_tower": [
|
||||||
"10",
|
"10",
|
||||||
"10",
|
"10",
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_enable_overhang_speed": [
|
|
||||||
"1",
|
|
||||||
"1",
|
|
||||||
"1",
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow",
|
|
||||||
"Bowden Standard",
|
|
||||||
"Bowden High Flow"
|
|
||||||
],
|
|
||||||
"filament_flush_temp": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_flush_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_overhang_1_4_speed": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_overhang_2_4_speed": [
|
|
||||||
"50",
|
|
||||||
"50",
|
|
||||||
"50",
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"filament_overhang_3_4_speed": [
|
|
||||||
"30",
|
|
||||||
"30",
|
|
||||||
"30",
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"filament_overhang_4_4_speed": [
|
|
||||||
"10",
|
"10",
|
||||||
"10",
|
"10",
|
||||||
"10",
|
"10",
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_overhang_totally_speed": [
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_bridge_speed": [
|
|
||||||
"25",
|
|
||||||
"25",
|
|
||||||
"25",
|
|
||||||
"25"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature_nc": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time_nc": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_retract_length_nc": [
|
|
||||||
"14",
|
|
||||||
"14",
|
|
||||||
"14",
|
|
||||||
"14"
|
|
||||||
],
|
|
||||||
"filament_ramming_volumetric_speed": [
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_ramming_volumetric_speed_nc": [
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"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": [
|
"filament_flow_ratio": [
|
||||||
|
"0.95",
|
||||||
|
"0.95",
|
||||||
"0.95",
|
"0.95",
|
||||||
"0.95",
|
"0.95",
|
||||||
"0.95",
|
"0.95",
|
||||||
"0.95"
|
"0.95"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
|
"12",
|
||||||
|
"12",
|
||||||
"12",
|
"12",
|
||||||
"12",
|
"12",
|
||||||
"12",
|
"12",
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
|
"0",
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"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": [
|
"filament_tower_interface_print_temp": [
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
|
"include": [
|
||||||
|
"fdm_filament_template_direct_bowden_e3d"
|
||||||
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260",
|
||||||
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"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": [
|
"compatible_printers": [
|
||||||
"Bambu Lab X2D 0.4 nozzle"
|
"Bambu Lab X2D 0.4 nozzle"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -5,258 +5,95 @@
|
|||||||
"from": "system",
|
"from": "system",
|
||||||
"setting_id": "GFSB50_07",
|
"setting_id": "GFSB50_07",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"filament_adaptive_volumetric_speed": [
|
"chamber_temperatures": [
|
||||||
"0",
|
"60"
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_cooling_before_tower": [
|
"filament_cooling_before_tower": [
|
||||||
"10",
|
"10",
|
||||||
"10",
|
"10",
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_enable_overhang_speed": [
|
|
||||||
"1",
|
|
||||||
"1",
|
|
||||||
"1",
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow",
|
|
||||||
"Bowden Standard",
|
|
||||||
"Bowden High Flow"
|
|
||||||
],
|
|
||||||
"filament_flush_temp": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_flush_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_overhang_1_4_speed": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_overhang_2_4_speed": [
|
|
||||||
"50",
|
|
||||||
"50",
|
|
||||||
"50",
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"filament_overhang_3_4_speed": [
|
|
||||||
"30",
|
|
||||||
"30",
|
|
||||||
"30",
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"filament_overhang_4_4_speed": [
|
|
||||||
"10",
|
"10",
|
||||||
"10",
|
"10",
|
||||||
"10",
|
"10",
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_overhang_totally_speed": [
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10",
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_bridge_speed": [
|
|
||||||
"25",
|
|
||||||
"25",
|
|
||||||
"25",
|
|
||||||
"25"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature_nc": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time_nc": [
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_retract_length_nc": [
|
|
||||||
"14",
|
|
||||||
"14",
|
|
||||||
"14",
|
|
||||||
"14"
|
|
||||||
],
|
|
||||||
"filament_ramming_volumetric_speed": [
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_ramming_volumetric_speed_nc": [
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1",
|
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil",
|
|
||||||
"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": [
|
"filament_flow_ratio": [
|
||||||
|
"0.95",
|
||||||
|
"0.95",
|
||||||
"0.95",
|
"0.95",
|
||||||
"0.95",
|
"0.95",
|
||||||
"0.95",
|
"0.95",
|
||||||
"0.95"
|
"0.95"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
|
"12",
|
||||||
|
"12",
|
||||||
"12",
|
"12",
|
||||||
"12",
|
"12",
|
||||||
"12",
|
"12",
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
|
"0",
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"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": [
|
"filament_tower_interface_print_temp": [
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
|
"include": [
|
||||||
|
"fdm_filament_template_direct_bowden_e3d"
|
||||||
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260",
|
||||||
|
"260",
|
||||||
"260",
|
"260",
|
||||||
"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": [
|
"compatible_printers": [
|
||||||
"Bambu Lab X2D 0.6 nozzle",
|
"Bambu Lab X2D 0.6 nozzle",
|
||||||
"Bambu Lab X2D 0.8 nozzle"
|
"Bambu Lab X2D 0.8 nozzle"
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
"filament_cost": [
|
"filament_cost": [
|
||||||
"29.99"
|
"26.99"
|
||||||
],
|
],
|
||||||
"filament_density": [
|
"filament_density": [
|
||||||
"1.08"
|
"1.08"
|
||||||
|
|||||||
@@ -71,105 +71,8 @@
|
|||||||
"20",
|
"20",
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"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": [
|
"nozzle_temperature": [
|
||||||
"270",
|
"270",
|
||||||
|
|||||||
@@ -14,30 +14,41 @@
|
|||||||
"counter_coef_3": [
|
"counter_coef_3": [
|
||||||
"-0.0092"
|
"-0.0092"
|
||||||
],
|
],
|
||||||
"counter_limit_max": [
|
|
||||||
"0.2258"
|
|
||||||
],
|
|
||||||
"counter_limit_min": [
|
"counter_limit_min": [
|
||||||
"-0.0092"
|
"-0.0092"
|
||||||
],
|
],
|
||||||
"filament_change_length": [
|
"counter_limit_max": [
|
||||||
"4"
|
"0.2258"
|
||||||
],
|
],
|
||||||
"filament_cooling_before_tower": [
|
"filament_cooling_before_tower": [
|
||||||
|
"10",
|
||||||
"10",
|
"10",
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
|
"0.96",
|
||||||
"0.96",
|
"0.96",
|
||||||
"0.96"
|
"0.96"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"25",
|
"25",
|
||||||
"30"
|
"30",
|
||||||
|
"25"
|
||||||
],
|
],
|
||||||
"filament_pre_cooling_temperature_nc": [
|
"filament_retraction_length": [
|
||||||
"230",
|
"0.4",
|
||||||
"230"
|
"0.4",
|
||||||
|
"0.4"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"1",
|
||||||
|
"1",
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"1",
|
||||||
|
"1",
|
||||||
|
"1"
|
||||||
],
|
],
|
||||||
"filament_prime_volume": [
|
"filament_prime_volume": [
|
||||||
"30"
|
"30"
|
||||||
@@ -45,141 +56,67 @@
|
|||||||
"filament_prime_volume_nc": [
|
"filament_prime_volume_nc": [
|
||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Spiral Lift",
|
||||||
|
"Spiral Lift",
|
||||||
|
"Spiral Lift"
|
||||||
|
],
|
||||||
|
"filament_pre_cooling_temperature_nc": [
|
||||||
|
"230",
|
||||||
|
"230",
|
||||||
|
"230"
|
||||||
|
],
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time_nc": [
|
"filament_ramming_travel_time_nc": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"0.4",
|
|
||||||
"0.4"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_wipe_distance": [
|
"filament_change_length": [
|
||||||
"1",
|
"4"
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"Spiral Lift",
|
|
||||||
"Spiral Lift"
|
|
||||||
],
|
|
||||||
"first_x_layer_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_change_length_nc": [
|
"filament_change_length_nc": [
|
||||||
"4"
|
"4"
|
||||||
],
|
],
|
||||||
|
"first_x_layer_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
"hole_coef_2": [
|
"hole_coef_2": [
|
||||||
"0.0013"
|
"0.0013"
|
||||||
],
|
],
|
||||||
"hole_coef_3": [
|
"hole_coef_3": [
|
||||||
"0.1261"
|
"0.1261"
|
||||||
],
|
],
|
||||||
"hole_limit_max": [
|
|
||||||
"0.1586"
|
|
||||||
],
|
|
||||||
"hole_limit_min": [
|
"hole_limit_min": [
|
||||||
"0.1261"
|
"0.1261"
|
||||||
],
|
],
|
||||||
|
"hole_limit_max": [
|
||||||
|
"0.1586"
|
||||||
|
],
|
||||||
"filament_preheat_temperature_delta": [
|
"filament_preheat_temperature_delta": [
|
||||||
|
"20",
|
||||||
"20",
|
"20",
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual_e3d"
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_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": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"slow_down_min_speed": [
|
"slow_down_min_speed": [
|
||||||
|
"20",
|
||||||
"20",
|
"20",
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -91,85 +91,8 @@
|
|||||||
"20",
|
"20",
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_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": [
|
"nozzle_temperature": [
|
||||||
"270",
|
"270",
|
||||||
|
|||||||
@@ -14,30 +14,41 @@
|
|||||||
"counter_coef_3": [
|
"counter_coef_3": [
|
||||||
"-0.0092"
|
"-0.0092"
|
||||||
],
|
],
|
||||||
"counter_limit_max": [
|
|
||||||
"0.2258"
|
|
||||||
],
|
|
||||||
"counter_limit_min": [
|
"counter_limit_min": [
|
||||||
"-0.0092"
|
"-0.0092"
|
||||||
],
|
],
|
||||||
"filament_change_length": [
|
"counter_limit_max": [
|
||||||
"4"
|
"0.2258"
|
||||||
],
|
],
|
||||||
"filament_cooling_before_tower": [
|
"filament_cooling_before_tower": [
|
||||||
|
"10",
|
||||||
"10",
|
"10",
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
|
"0.96",
|
||||||
"0.96",
|
"0.96",
|
||||||
"0.96"
|
"0.96"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"20",
|
"20",
|
||||||
"30"
|
"30",
|
||||||
|
"20"
|
||||||
],
|
],
|
||||||
"filament_pre_cooling_temperature_nc": [
|
"filament_retraction_length": [
|
||||||
"230",
|
"0.4",
|
||||||
"230"
|
"0.6",
|
||||||
|
"0.4"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"1",
|
||||||
|
"1",
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"1",
|
||||||
|
"1",
|
||||||
|
"1"
|
||||||
],
|
],
|
||||||
"filament_prime_volume": [
|
"filament_prime_volume": [
|
||||||
"30"
|
"30"
|
||||||
@@ -45,141 +56,67 @@
|
|||||||
"filament_prime_volume_nc": [
|
"filament_prime_volume_nc": [
|
||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Spiral Lift",
|
||||||
|
"Spiral Lift",
|
||||||
|
"Spiral Lift"
|
||||||
|
],
|
||||||
|
"filament_pre_cooling_temperature_nc": [
|
||||||
|
"230",
|
||||||
|
"230",
|
||||||
|
"230"
|
||||||
|
],
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time_nc": [
|
"filament_ramming_travel_time_nc": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"0.4",
|
|
||||||
"0.6"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_wipe_distance": [
|
"filament_change_length": [
|
||||||
"1",
|
"4"
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"Spiral Lift",
|
|
||||||
"Spiral Lift"
|
|
||||||
],
|
|
||||||
"first_x_layer_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_change_length_nc": [
|
"filament_change_length_nc": [
|
||||||
"4"
|
"4"
|
||||||
],
|
],
|
||||||
|
"first_x_layer_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
"hole_coef_2": [
|
"hole_coef_2": [
|
||||||
"0.0013"
|
"0.0013"
|
||||||
],
|
],
|
||||||
"hole_coef_3": [
|
"hole_coef_3": [
|
||||||
"0.1261"
|
"0.1261"
|
||||||
],
|
],
|
||||||
"hole_limit_max": [
|
|
||||||
"0.1586"
|
|
||||||
],
|
|
||||||
"hole_limit_min": [
|
"hole_limit_min": [
|
||||||
"0.1261"
|
"0.1261"
|
||||||
],
|
],
|
||||||
|
"hole_limit_max": [
|
||||||
|
"0.1586"
|
||||||
|
],
|
||||||
"filament_preheat_temperature_delta": [
|
"filament_preheat_temperature_delta": [
|
||||||
|
"20",
|
||||||
"20",
|
"20",
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual_e3d"
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_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": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"slow_down_min_speed": [
|
"slow_down_min_speed": [
|
||||||
|
"20",
|
||||||
"20",
|
"20",
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -8,97 +8,50 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"counter_coef_2": [
|
||||||
"nil",
|
"0.0094"
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"counter_coef_3": [
|
||||||
"0.95",
|
"-0.0092"
|
||||||
"0.95"
|
|
||||||
],
|
],
|
||||||
"filament_flush_temp": [
|
"counter_limit_max": [
|
||||||
"0",
|
"0.2258"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_flush_volumetric_speed": [
|
"counter_limit_min": [
|
||||||
"0",
|
"-0.0092"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_long_retractions_when_cut": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"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": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe_distance": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"filament_prime_volume": [
|
||||||
"0",
|
"30"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"filament_change_length": [
|
||||||
"1",
|
"4"
|
||||||
"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"
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"270",
|
"270",
|
||||||
@@ -108,13 +61,9 @@
|
|||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
"slow_down_min_speed": [
|
||||||
"10",
|
"20",
|
||||||
"10"
|
"20"
|
||||||
],
|
|
||||||
"volumetric_speed_coefficients": [
|
|
||||||
"0 0 0 0 0 0",
|
|
||||||
"0 0 0 0 0 0"
|
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2D 0.2 nozzle"
|
"Bambu Lab H2D 0.2 nozzle"
|
||||||
|
|||||||
@@ -9,133 +9,87 @@
|
|||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
"counter_coef_2": [
|
"counter_coef_2": [
|
||||||
"0.007"
|
"0.0094"
|
||||||
],
|
],
|
||||||
"counter_coef_3": [
|
"counter_coef_3": [
|
||||||
"0.003"
|
"-0.0092"
|
||||||
],
|
],
|
||||||
"counter_limit_max": [
|
"counter_limit_max": [
|
||||||
"0.1"
|
"0.2258"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"counter_limit_min": [
|
||||||
"nil",
|
"-0.0092"
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_change_length": [
|
||||||
"0.95",
|
"4"
|
||||||
"0.95"
|
|
||||||
],
|
],
|
||||||
"filament_flush_temp": [
|
"filament_cooling_before_tower": [
|
||||||
"0",
|
"10",
|
||||||
"0"
|
"10",
|
||||||
],
|
"10"
|
||||||
"filament_flush_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"20",
|
"20",
|
||||||
"35"
|
"35",
|
||||||
|
"20"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_prime_volume": [
|
||||||
"-1",
|
"30"
|
||||||
"-1"
|
|
||||||
],
|
],
|
||||||
"filament_retract_before_wipe": [
|
"filament_ramming_travel_time": [
|
||||||
"nil",
|
"0",
|
||||||
"nil"
|
"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": [
|
"filament_retraction_length": [
|
||||||
|
"0.4",
|
||||||
"0.4",
|
"0.4",
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
|
"1",
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_wipe_distance": [
|
"filament_wipe_distance": [
|
||||||
"1",
|
"1",
|
||||||
"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",
|
||||||
"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": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
"slow_down_min_speed": [
|
||||||
"10",
|
"20",
|
||||||
"10"
|
"20",
|
||||||
],
|
"20"
|
||||||
"volumetric_speed_coefficients": [
|
|
||||||
"0 0 0 0 0 0",
|
|
||||||
"0 0 0 0 0 0"
|
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2D 0.4 nozzle"
|
"Bambu Lab H2D 0.4 nozzle"
|
||||||
|
|||||||
@@ -8,113 +8,88 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"counter_coef_2": [
|
||||||
"nil",
|
"0.0094"
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"counter_coef_3": [
|
||||||
"0.95",
|
"-0.0092"
|
||||||
"0.95"
|
|
||||||
],
|
],
|
||||||
"filament_flush_temp": [
|
"counter_limit_max": [
|
||||||
"0",
|
"0.2258"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_flush_volumetric_speed": [
|
"counter_limit_min": [
|
||||||
"0",
|
"-0.0092"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_long_retractions_when_cut": [
|
"filament_change_length": [
|
||||||
"nil",
|
"4"
|
||||||
"nil"
|
],
|
||||||
|
"filament_cooling_before_tower": [
|
||||||
|
"10",
|
||||||
|
"10",
|
||||||
|
"10"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"25",
|
"25",
|
||||||
"35"
|
"35",
|
||||||
|
"25"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_prime_volume": [
|
||||||
"-1",
|
"30"
|
||||||
"-1"
|
|
||||||
],
|
],
|
||||||
"filament_retract_before_wipe": [
|
"filament_ramming_travel_time": [
|
||||||
"nil",
|
"0",
|
||||||
"nil"
|
"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": [
|
"filament_retraction_length": [
|
||||||
|
"0.4",
|
||||||
"0.4",
|
"0.4",
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
|
"1",
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_wipe_distance": [
|
"filament_wipe_distance": [
|
||||||
"1",
|
"1",
|
||||||
"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",
|
||||||
"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": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
"slow_down_min_speed": [
|
||||||
"10",
|
"20",
|
||||||
"10"
|
"20",
|
||||||
],
|
"20"
|
||||||
"volumetric_speed_coefficients": [
|
|
||||||
"0 0 0 0 0 0",
|
|
||||||
"0 0 0 0 0 0"
|
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2D 0.6 nozzle"
|
"Bambu Lab H2D 0.6 nozzle"
|
||||||
|
|||||||
@@ -8,62 +8,30 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"counter_coef_2": [
|
||||||
"nil",
|
"0.0094"
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"counter_coef_3": [
|
||||||
"0.95",
|
"-0.0092"
|
||||||
"0.95"
|
|
||||||
],
|
],
|
||||||
"filament_flush_temp": [
|
"counter_limit_max": [
|
||||||
"0",
|
"0.2258"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_flush_volumetric_speed": [
|
"counter_limit_min": [
|
||||||
"0",
|
"-0.0092"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_long_retractions_when_cut": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"25",
|
"25",
|
||||||
"35"
|
"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": [
|
"filament_retraction_length": [
|
||||||
"0.4",
|
"0.4",
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
@@ -72,37 +40,38 @@
|
|||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
"filament_z_hop_types": [
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"Spiral Lift"
|
"Spiral Lift"
|
||||||
],
|
],
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_extruder_id": [
|
"filament_extruder_id": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"filament_prime_volume": [
|
||||||
"1",
|
"30"
|
||||||
"1"
|
],
|
||||||
|
"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": [
|
"nozzle_temperature": [
|
||||||
"270",
|
"270",
|
||||||
@@ -112,13 +81,9 @@
|
|||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
"slow_down_min_speed": [
|
||||||
"10",
|
"20",
|
||||||
"10"
|
"20"
|
||||||
],
|
|
||||||
"volumetric_speed_coefficients": [
|
|
||||||
"0 0 0 0 0 0",
|
|
||||||
"0 0 0 0 0 0"
|
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2D 0.8 nozzle"
|
"Bambu Lab H2D 0.8 nozzle"
|
||||||
|
|||||||
@@ -8,97 +8,20 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
|
||||||
"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": [
|
"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": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe_distance": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"long_retractions_when_ec": [
|
|
||||||
"1",
|
|
||||||
"1"
|
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"270",
|
"270",
|
||||||
@@ -108,13 +31,9 @@
|
|||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
"slow_down_min_speed": [
|
||||||
"10",
|
"20",
|
||||||
"10"
|
"20"
|
||||||
],
|
|
||||||
"volumetric_speed_coefficients": [
|
|
||||||
"0 0 0 0 0 0",
|
|
||||||
"0 0 0 0 0 0"
|
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2D Pro 0.2 nozzle"
|
"Bambu Lab H2D Pro 0.2 nozzle"
|
||||||
|
|||||||
@@ -17,62 +17,22 @@
|
|||||||
"counter_limit_max": [
|
"counter_limit_max": [
|
||||||
"0.1"
|
"0.1"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
|
||||||
"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": [
|
"filament_max_volumetric_speed": [
|
||||||
"20",
|
"20",
|
||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_ramming_travel_time": [
|
||||||
"-1",
|
"0",
|
||||||
"-1"
|
"0"
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_restart_extra": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_when_changing_layer": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_distances_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
"0.4",
|
"0.4",
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
@@ -81,45 +41,24 @@
|
|||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
"filament_z_hop_types": [
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"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": [
|
"hole_coef_2": [
|
||||||
"-0.006"
|
"-0.006"
|
||||||
],
|
],
|
||||||
"hole_coef_3": [
|
"hole_coef_3": [
|
||||||
"0.25"
|
"0.25"
|
||||||
],
|
],
|
||||||
"hole_limit_min": [
|
|
||||||
"-0.088"
|
|
||||||
],
|
|
||||||
"hole_limit_max": [
|
"hole_limit_max": [
|
||||||
"0.14"
|
"0.14"
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"hole_limit_min": [
|
||||||
"1",
|
"-0.088"
|
||||||
"1"
|
],
|
||||||
|
"include": [
|
||||||
|
"fdm_filament_template_direct_dual"
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"270",
|
"270",
|
||||||
@@ -129,13 +68,9 @@
|
|||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
"slow_down_min_speed": [
|
||||||
"10",
|
"20",
|
||||||
"10"
|
"20"
|
||||||
],
|
|
||||||
"volumetric_speed_coefficients": [
|
|
||||||
"0 0 0 0 0 0",
|
|
||||||
"0 0 0 0 0 0"
|
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2D Pro 0.4 nozzle"
|
"Bambu Lab H2D Pro 0.4 nozzle"
|
||||||
|
|||||||
@@ -8,62 +8,22 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
|
||||||
"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": [
|
"filament_max_volumetric_speed": [
|
||||||
"25",
|
"25",
|
||||||
"35"
|
"35"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_ramming_travel_time": [
|
||||||
"-1",
|
"0",
|
||||||
"-1"
|
"0"
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_restart_extra": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_when_changing_layer": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_distances_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
"0.4",
|
"0.4",
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
@@ -72,33 +32,12 @@
|
|||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
"filament_z_hop_types": [
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"Spiral Lift"
|
"Spiral Lift"
|
||||||
],
|
],
|
||||||
"filament_extruder_variant": [
|
"include": [
|
||||||
"Direct Drive Standard",
|
"fdm_filament_template_direct_dual"
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_adaptive_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"long_retractions_when_ec": [
|
|
||||||
"1",
|
|
||||||
"1"
|
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"270",
|
"270",
|
||||||
@@ -108,13 +47,9 @@
|
|||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
"slow_down_min_speed": [
|
||||||
"10",
|
"20",
|
||||||
"10"
|
"20"
|
||||||
],
|
|
||||||
"volumetric_speed_coefficients": [
|
|
||||||
"0 0 0 0 0 0",
|
|
||||||
"0 0 0 0 0 0"
|
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2D Pro 0.6 nozzle"
|
"Bambu Lab H2D Pro 0.6 nozzle"
|
||||||
|
|||||||
@@ -8,62 +8,22 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
|
||||||
"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": [
|
"filament_max_volumetric_speed": [
|
||||||
"25",
|
"25",
|
||||||
"35"
|
"35"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_ramming_travel_time": [
|
||||||
"-1",
|
"0",
|
||||||
"-1"
|
"0"
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_restart_extra": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_when_changing_layer": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_distances_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
"0.4",
|
"0.4",
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
@@ -72,33 +32,12 @@
|
|||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
"filament_z_hop_types": [
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"Spiral Lift"
|
"Spiral Lift"
|
||||||
],
|
],
|
||||||
"filament_extruder_variant": [
|
"include": [
|
||||||
"Direct Drive Standard",
|
"fdm_filament_template_direct_dual"
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_adaptive_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"long_retractions_when_ec": [
|
|
||||||
"1",
|
|
||||||
"1"
|
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"270",
|
"270",
|
||||||
@@ -108,13 +47,9 @@
|
|||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
"slow_down_min_speed": [
|
||||||
"10",
|
"20",
|
||||||
"10"
|
"20"
|
||||||
],
|
|
||||||
"volumetric_speed_coefficients": [
|
|
||||||
"0 0 0 0 0 0",
|
|
||||||
"0 0 0 0 0 0"
|
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2D Pro 0.8 nozzle"
|
"Bambu Lab H2D Pro 0.8 nozzle"
|
||||||
|
|||||||
@@ -8,93 +8,54 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"counter_coef_2": [
|
||||||
"nil",
|
"0.0094"
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"counter_coef_3": [
|
||||||
"0.95",
|
"-0.0092"
|
||||||
"0.95"
|
|
||||||
],
|
],
|
||||||
"filament_flush_temp": [
|
"counter_limit_min": [
|
||||||
"0",
|
"-0.0092"
|
||||||
"0"
|
],
|
||||||
|
"counter_limit_max": [
|
||||||
|
"0.2258"
|
||||||
|
],
|
||||||
|
"filament_cooling_before_tower": [
|
||||||
|
"10",
|
||||||
|
"10"
|
||||||
],
|
],
|
||||||
"filament_flush_volumetric_speed": [
|
"filament_flush_volumetric_speed": [
|
||||||
"3",
|
"3",
|
||||||
"3"
|
"3"
|
||||||
],
|
],
|
||||||
"filament_long_retractions_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"2",
|
"2",
|
||||||
"2"
|
"2"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_prime_volume": [
|
||||||
"-1",
|
"30"
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_restart_extra": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_when_changing_layer": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_distances_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe_distance": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"filament_change_length": [
|
||||||
"0",
|
"4"
|
||||||
"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"
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -118,9 +79,9 @@
|
|||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2S 0.2 nozzle"
|
"Bambu Lab H2S 0.2 nozzle"
|
||||||
|
|||||||
@@ -8,103 +8,86 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"counter_coef_2": [
|
||||||
"nil",
|
"0.0094"
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"counter_coef_3": [
|
||||||
"0.95",
|
"-0.0092"
|
||||||
"0.95"
|
|
||||||
],
|
],
|
||||||
"filament_flush_temp": [
|
"counter_limit_min": [
|
||||||
"0",
|
"-0.0092"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_flush_volumetric_speed": [
|
"counter_limit_max": [
|
||||||
"0",
|
"0.2258"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_long_retractions_when_cut": [
|
"filament_change_length": [
|
||||||
"nil",
|
"4"
|
||||||
"nil"
|
],
|
||||||
|
"filament_cooling_before_tower": [
|
||||||
|
"10",
|
||||||
|
"10",
|
||||||
|
"10"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"25",
|
"25",
|
||||||
"35"
|
"35",
|
||||||
|
"25"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_prime_volume": [
|
||||||
"-1",
|
"30"
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_restart_extra": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_when_changing_layer": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_distances_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
|
"0.4",
|
||||||
"0.4",
|
"0.4",
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
|
"1",
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_wipe_distance": [
|
"filament_wipe_distance": [
|
||||||
|
"1",
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
"filament_z_hop_types": [
|
||||||
|
"Spiral Lift",
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"Spiral Lift"
|
"Spiral Lift"
|
||||||
],
|
],
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_adaptive_volumetric_speed": [
|
|
||||||
"0",
|
"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": [
|
"long_retractions_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
@@ -115,12 +98,14 @@
|
|||||||
"2"
|
"2"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
"retraction_distances_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20",
|
||||||
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2S 0.6 nozzle"
|
"Bambu Lab H2S 0.6 nozzle"
|
||||||
|
|||||||
@@ -8,62 +8,30 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"counter_coef_2": [
|
||||||
"nil",
|
"0.0094"
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"counter_coef_3": [
|
||||||
"0.95",
|
"-0.0092"
|
||||||
"0.95"
|
|
||||||
],
|
],
|
||||||
"filament_flush_temp": [
|
"counter_limit_min": [
|
||||||
"0",
|
"-0.0092"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_flush_volumetric_speed": [
|
"counter_limit_max": [
|
||||||
"0",
|
"0.2258"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_long_retractions_when_cut": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"25",
|
"25",
|
||||||
"35"
|
"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": [
|
"filament_retraction_length": [
|
||||||
"0.4",
|
"0.4",
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
@@ -72,29 +40,34 @@
|
|||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_z_hop": [
|
"filament_prime_volume": [
|
||||||
"nil",
|
"30"
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_z_hop_types": [
|
"filament_z_hop_types": [
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"Spiral Lift"
|
"Spiral Lift"
|
||||||
],
|
],
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"filament_change_length": [
|
||||||
"0",
|
"4"
|
||||||
"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"
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -118,9 +91,9 @@
|
|||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2S 0.8 nozzle"
|
"Bambu Lab H2S 0.8 nozzle"
|
||||||
|
|||||||
@@ -8,103 +8,86 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"counter_coef_2": [
|
||||||
"nil",
|
"0.0094"
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"counter_coef_3": [
|
||||||
"0.95",
|
"-0.0092"
|
||||||
"0.95"
|
|
||||||
],
|
],
|
||||||
"filament_flush_temp": [
|
"counter_limit_min": [
|
||||||
"0",
|
"-0.0092"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_flush_volumetric_speed": [
|
"counter_limit_max": [
|
||||||
"0",
|
"0.2258"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_long_retractions_when_cut": [
|
"filament_change_length": [
|
||||||
"nil",
|
"4"
|
||||||
"nil"
|
],
|
||||||
|
"filament_cooling_before_tower": [
|
||||||
|
"10",
|
||||||
|
"10",
|
||||||
|
"10"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"20",
|
"20",
|
||||||
"35"
|
"35",
|
||||||
|
"20"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_prime_volume": [
|
||||||
"-1",
|
"30"
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_restart_extra": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_when_changing_layer": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_distances_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
|
"0.4",
|
||||||
"0.4",
|
"0.4",
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
|
"1",
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_wipe_distance": [
|
"filament_wipe_distance": [
|
||||||
|
"1",
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_z_hop": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
"filament_z_hop_types": [
|
||||||
|
"Spiral Lift",
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"Spiral Lift"
|
"Spiral Lift"
|
||||||
],
|
],
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_adaptive_volumetric_speed": [
|
|
||||||
"0",
|
"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": [
|
"long_retractions_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
@@ -115,12 +98,14 @@
|
|||||||
"2"
|
"2"
|
||||||
],
|
],
|
||||||
"retraction_distances_when_ec": [
|
"retraction_distances_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20",
|
||||||
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab H2S 0.4 nozzle"
|
"Bambu Lab H2S 0.4 nozzle"
|
||||||
|
|||||||
@@ -11,11 +11,17 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
"eng_plate_temp": [
|
"counter_coef_2": [
|
||||||
"90"
|
"0.0094"
|
||||||
],
|
],
|
||||||
"eng_plate_temp_initial_layer": [
|
"counter_coef_3": [
|
||||||
"90"
|
"-0.0092"
|
||||||
|
],
|
||||||
|
"counter_limit_max": [
|
||||||
|
"0.2258"
|
||||||
|
],
|
||||||
|
"counter_limit_min": [
|
||||||
|
"-0.0092"
|
||||||
],
|
],
|
||||||
"fan_max_speed": [
|
"fan_max_speed": [
|
||||||
"60"
|
"60"
|
||||||
@@ -23,66 +29,26 @@
|
|||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.95",
|
|
||||||
"0.95"
|
|
||||||
],
|
|
||||||
"filament_flush_temp": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_flush_volumetric_speed": [
|
"filament_flush_volumetric_speed": [
|
||||||
"3",
|
"3",
|
||||||
"3"
|
"3"
|
||||||
],
|
],
|
||||||
"filament_long_retractions_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"2",
|
"2",
|
||||||
"2"
|
"2"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_ramming_travel_time": [
|
||||||
"-1",
|
"0",
|
||||||
"-1"
|
"0"
|
||||||
],
|
|
||||||
"filament_ramming_volumetric_speed_nc": [
|
|
||||||
"-1",
|
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_restart_extra": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_when_changing_layer": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_retraction_distances_when_cut": [
|
"filament_retraction_distances_when_cut": [
|
||||||
"10",
|
"10",
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_retraction_length": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
@@ -91,67 +57,20 @@
|
|||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_z_hop": [
|
"hole_coef_2": [
|
||||||
"nil",
|
"0.0013"
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_z_hop_types": [
|
"hole_coef_3": [
|
||||||
"nil",
|
"0.1261"
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_extruder_variant": [
|
"hole_limit_max": [
|
||||||
"Direct Drive Standard",
|
"0.1586"
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
],
|
||||||
"filament_pre_cooling_temperature": [
|
"hole_limit_min": [
|
||||||
"0",
|
"0.1261"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_pre_cooling_temperature_nc": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"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": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -165,23 +84,13 @@
|
|||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"override_process_overhang_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"retraction_distances_when_ec": [
|
"retraction_distances_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"textured_plate_temp": [
|
"slow_down_min_speed": [
|
||||||
"90"
|
"20",
|
||||||
],
|
"20"
|
||||||
"textured_plate_temp_initial_layer": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"volumetric_speed_coefficients": [
|
|
||||||
"0 0 0 0 0 0",
|
|
||||||
"0 0 0 0 0 0"
|
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab P2S 0.2 nozzle"
|
"Bambu Lab P2S 0.2 nozzle"
|
||||||
|
|||||||
@@ -11,171 +11,87 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
"eng_plate_temp": [
|
"counter_coef_2": [
|
||||||
"90"
|
"0.0094"
|
||||||
],
|
],
|
||||||
"eng_plate_temp_initial_layer": [
|
"counter_coef_3": [
|
||||||
"90"
|
"-0.0092"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"counter_limit_min": [
|
||||||
"nil",
|
"-0.0092"
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"counter_limit_max": [
|
||||||
"0.95",
|
"0.2258"
|
||||||
"0.95"
|
|
||||||
],
|
],
|
||||||
"filament_flush_temp": [
|
"filament_cooling_before_tower": [
|
||||||
"0",
|
"10",
|
||||||
"0"
|
"10",
|
||||||
],
|
"10"
|
||||||
"filament_flush_volumetric_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"18",
|
"18",
|
||||||
"25"
|
"25",
|
||||||
],
|
"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": [
|
"filament_retraction_distances_when_cut": [
|
||||||
|
"10",
|
||||||
"10",
|
"10",
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
|
"0.4",
|
||||||
"0.4",
|
"0.4",
|
||||||
"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": [
|
"filament_z_hop_types": [
|
||||||
|
"Spiral Lift",
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"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": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_ramming_travel_time_nc": [
|
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_enable_overhang_speed": [
|
"hole_coef_2": [
|
||||||
"1",
|
"0.0013"
|
||||||
"1"
|
|
||||||
],
|
],
|
||||||
"filament_overhang_1_4_speed": [
|
"hole_coef_3": [
|
||||||
"0",
|
"0.1261"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_overhang_2_4_speed": [
|
"hole_limit_min": [
|
||||||
"50",
|
"0.1261"
|
||||||
"50"
|
|
||||||
],
|
],
|
||||||
"filament_overhang_3_4_speed": [
|
"hole_limit_max": [
|
||||||
"30",
|
"0.1586"
|
||||||
"30"
|
|
||||||
],
|
],
|
||||||
"filament_overhang_4_4_speed": [
|
"include": [
|
||||||
"10",
|
"fdm_filament_template_direct_dual_e3d"
|
||||||
"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": [
|
"long_retractions_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"override_process_overhang_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"retraction_distances_when_ec": [
|
"retraction_distances_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"textured_plate_temp": [
|
"slow_down_min_speed": [
|
||||||
"90"
|
"20",
|
||||||
],
|
"20",
|
||||||
"textured_plate_temp_initial_layer": [
|
"20"
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"volumetric_speed_coefficients": [
|
|
||||||
"0 0 0 0 0 0",
|
|
||||||
"0 0 0 0 0 0"
|
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab P2S 0.4 nozzle"
|
"Bambu Lab P2S 0.4 nozzle"
|
||||||
|
|||||||
@@ -11,174 +11,100 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
"eng_plate_temp": [
|
"counter_coef_2": [
|
||||||
"90"
|
"0.0094"
|
||||||
],
|
],
|
||||||
"eng_plate_temp_initial_layer": [
|
"counter_coef_3": [
|
||||||
"90"
|
"-0.0092"
|
||||||
|
],
|
||||||
|
"counter_limit_min": [
|
||||||
|
"-0.0092"
|
||||||
|
],
|
||||||
|
"counter_limit_max": [
|
||||||
|
"0.2258"
|
||||||
],
|
],
|
||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"25"
|
"25"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10",
|
||||||
],
|
"10"
|
||||||
"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": [
|
"filament_max_volumetric_speed": [
|
||||||
"18",
|
"18",
|
||||||
"35"
|
"35",
|
||||||
],
|
"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": [
|
"filament_retraction_distances_when_cut": [
|
||||||
|
"10",
|
||||||
"10",
|
"10",
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
|
"0.4",
|
||||||
"0.4",
|
"0.4",
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
|
"1",
|
||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_wipe_distance": [
|
"filament_wipe_distance": [
|
||||||
"1",
|
"1",
|
||||||
"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",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_overhang_1_4_speed": [
|
"filament_z_hop_types": [
|
||||||
|
"Spiral Lift",
|
||||||
|
"Spiral Lift",
|
||||||
|
"Spiral Lift"
|
||||||
|
],
|
||||||
|
"filament_ramming_travel_time": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_overhang_2_4_speed": [
|
"hole_coef_2": [
|
||||||
"50",
|
"0.0013"
|
||||||
"50"
|
|
||||||
],
|
],
|
||||||
"filament_overhang_3_4_speed": [
|
"hole_coef_3": [
|
||||||
"30",
|
"0.1261"
|
||||||
"30"
|
|
||||||
],
|
],
|
||||||
"filament_overhang_4_4_speed": [
|
"hole_limit_min": [
|
||||||
"10",
|
"0.1261"
|
||||||
"10"
|
|
||||||
],
|
],
|
||||||
"filament_overhang_totally_speed": [
|
"hole_limit_max": [
|
||||||
"10",
|
"0.1586"
|
||||||
"10"
|
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual_e3d"
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"hot_plate_temp": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"hot_plate_temp_initial_layer": [
|
|
||||||
"90"
|
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"nozzle_temperature_initial_layer": [
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"270",
|
||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"override_process_overhang_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"retraction_distances_when_ec": [
|
"retraction_distances_when_ec": [
|
||||||
|
"0",
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"textured_plate_temp": [
|
"slow_down_min_speed": [
|
||||||
"90"
|
"20",
|
||||||
],
|
"20",
|
||||||
"textured_plate_temp_initial_layer": [
|
"20"
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"volumetric_speed_coefficients": [
|
|
||||||
"0 0 0 0 0 0",
|
|
||||||
"0 0 0 0 0 0"
|
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab P2S 0.6 nozzle"
|
"Bambu Lab P2S 0.6 nozzle"
|
||||||
|
|||||||
@@ -8,58 +8,32 @@
|
|||||||
"chamber_temperatures": [
|
"chamber_temperatures": [
|
||||||
"65"
|
"65"
|
||||||
],
|
],
|
||||||
"eng_plate_temp": [
|
"counter_coef_2": [
|
||||||
"90"
|
"0.0094"
|
||||||
],
|
],
|
||||||
"eng_plate_temp_initial_layer": [
|
"counter_coef_3": [
|
||||||
"90"
|
"-0.0092"
|
||||||
|
],
|
||||||
|
"counter_limit_max": [
|
||||||
|
"0.2258"
|
||||||
|
],
|
||||||
|
"counter_limit_min": [
|
||||||
|
"-0.0092"
|
||||||
],
|
],
|
||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"25"
|
"25"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_cooling_before_tower": [
|
||||||
"nil",
|
"10",
|
||||||
"nil"
|
"10"
|
||||||
],
|
|
||||||
"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": [
|
"filament_max_volumetric_speed": [
|
||||||
"18",
|
"18",
|
||||||
"35"
|
"35"
|
||||||
],
|
],
|
||||||
"filament_ramming_volumetric_speed": [
|
"filament_ramming_travel_time": [
|
||||||
"-1",
|
"0",
|
||||||
"-1"
|
"0"
|
||||||
],
|
|
||||||
"filament_ramming_volumetric_speed_nc": [
|
|
||||||
"-1",
|
|
||||||
"-1"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_restart_extra": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_when_changing_layer": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
],
|
||||||
"filament_retraction_distances_when_cut": [
|
"filament_retraction_distances_when_cut": [
|
||||||
"10",
|
"10",
|
||||||
@@ -69,83 +43,24 @@
|
|||||||
"0.4",
|
"0.4",
|
||||||
"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": [
|
"filament_z_hop_types": [
|
||||||
"Spiral Lift",
|
"Spiral Lift",
|
||||||
"Spiral Lift"
|
"Spiral Lift"
|
||||||
],
|
],
|
||||||
"filament_extruder_variant": [
|
"hole_coef_2": [
|
||||||
"Direct Drive Standard",
|
"0.0013"
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
],
|
||||||
"filament_pre_cooling_temperature": [
|
"hole_coef_3": [
|
||||||
"0",
|
"0.1261"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_pre_cooling_temperature_nc": [
|
"hole_limit_max": [
|
||||||
"0",
|
"0.1586"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time": [
|
"hole_limit_min": [
|
||||||
"0",
|
"0.1261"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time_nc": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_enable_overhang_speed": [
|
|
||||||
"1",
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_overhang_1_4_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_overhang_2_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": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -159,23 +74,13 @@
|
|||||||
"270",
|
"270",
|
||||||
"270"
|
"270"
|
||||||
],
|
],
|
||||||
"override_process_overhang_speed": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"retraction_distances_when_ec": [
|
"retraction_distances_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"textured_plate_temp": [
|
"slow_down_min_speed": [
|
||||||
"90"
|
"20",
|
||||||
],
|
"20"
|
||||||
"textured_plate_temp_initial_layer": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"volumetric_speed_coefficients": [
|
|
||||||
"0 0 0 0 0 0",
|
|
||||||
"0 0 0 0 0 0"
|
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab P2S 0.8 nozzle"
|
"Bambu Lab P2S 0.8 nozzle"
|
||||||
|
|||||||
@@ -17,81 +17,12 @@
|
|||||||
"18",
|
"18",
|
||||||
"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": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -109,9 +40,9 @@
|
|||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab X1 0.2 nozzle"
|
"Bambu Lab X1 0.2 nozzle"
|
||||||
|
|||||||
@@ -12,6 +12,10 @@
|
|||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18",
|
||||||
|
"18"
|
||||||
|
],
|
||||||
"filament_retraction_distances_when_cut": [
|
"filament_retraction_distances_when_cut": [
|
||||||
"18",
|
"18",
|
||||||
"18"
|
"18"
|
||||||
@@ -20,81 +24,12 @@
|
|||||||
"0.4",
|
"0.4",
|
||||||
"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": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -112,13 +47,13 @@
|
|||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20",
|
||||||
|
"20"
|
||||||
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"V"
|
"V"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
|
||||||
"0 0 0 0 0 0",
|
|
||||||
"0 0 0 0 0 0"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab X1 0.6 nozzle"
|
"Bambu Lab X1 0.6 nozzle"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -17,81 +17,12 @@
|
|||||||
"18",
|
"18",
|
||||||
"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": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -109,9 +40,9 @@
|
|||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab X1 Carbon 0.2 nozzle",
|
"Bambu Lab X1 Carbon 0.2 nozzle",
|
||||||
|
|||||||
@@ -12,89 +12,28 @@
|
|||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18",
|
||||||
|
"25"
|
||||||
|
],
|
||||||
"filament_retraction_distances_when_cut": [
|
"filament_retraction_distances_when_cut": [
|
||||||
"18",
|
"18",
|
||||||
"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": [
|
"filament_retraction_length": [
|
||||||
"nil",
|
"nil",
|
||||||
"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": [
|
"filament_z_hop": [
|
||||||
"nil",
|
"nil",
|
||||||
"nil"
|
"0.6"
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -112,15 +51,15 @@
|
|||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||||
"Bambu Lab P1S 0.4 nozzle",
|
|
||||||
"Bambu Lab X1 0.4 nozzle",
|
"Bambu Lab X1 0.4 nozzle",
|
||||||
"Bambu Lab P1P 0.4 nozzle",
|
"Bambu Lab P1P 0.8 nozzle",
|
||||||
"Bambu Lab P1P 0.8 nozzle"
|
"Bambu Lab P1S 0.4 nozzle",
|
||||||
|
"Bambu Lab P1P 0.4 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -12,89 +12,28 @@
|
|||||||
"1",
|
"1",
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18",
|
||||||
|
"25"
|
||||||
|
],
|
||||||
"filament_retraction_distances_when_cut": [
|
"filament_retraction_distances_when_cut": [
|
||||||
"18",
|
"18",
|
||||||
"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": [
|
"filament_retraction_length": [
|
||||||
"nil",
|
"nil",
|
||||||
"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": [
|
"filament_z_hop": [
|
||||||
"nil",
|
"nil",
|
||||||
"nil"
|
"0.6"
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"nil",
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_extruder_variant": [
|
|
||||||
"Direct Drive Standard",
|
|
||||||
"Direct Drive High Flow"
|
|
||||||
],
|
|
||||||
"filament_pre_cooling_temperature": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"filament_ramming_travel_time": [
|
"filament_ramming_travel_time": [
|
||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_adaptive_volumetric_speed": [
|
"include": [
|
||||||
"0",
|
"fdm_filament_template_direct_dual"
|
||||||
"0"
|
|
||||||
],
|
],
|
||||||
"long_retractions_when_ec": [
|
"long_retractions_when_ec": [
|
||||||
"0",
|
"0",
|
||||||
@@ -112,16 +51,16 @@
|
|||||||
"0",
|
"0",
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"volumetric_speed_coefficients": [
|
"slow_down_min_speed": [
|
||||||
"0 0 0 0 0 0",
|
"20",
|
||||||
"0 0 0 0 0 0"
|
"20"
|
||||||
],
|
],
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||||
"Bambu Lab X1 0.8 nozzle",
|
"Bambu Lab X1 0.8 nozzle",
|
||||||
"Bambu Lab P1S 0.6 nozzle",
|
|
||||||
"Bambu Lab P1S 0.8 nozzle",
|
"Bambu Lab P1S 0.8 nozzle",
|
||||||
|
"Bambu Lab P1S 0.6 nozzle",
|
||||||
"Bambu Lab P1P 0.6 nozzle"
|
"Bambu Lab P1P 0.6 nozzle"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||