Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
10831bbe52 | ||
|
|
aa36ec9e42 | ||
|
|
7758332406 | ||
|
|
cc883e458d | ||
|
|
24f380963b | ||
|
|
ef956b995a | ||
|
|
82b860480f | ||
|
|
89dc4e1b99 | ||
|
|
12670a6e40 | ||
|
|
9454ca7454 | ||
|
|
e71497738f | ||
|
|
d820303a3f | ||
|
|
01fcd71aa3 | ||
|
|
9851874742 | ||
|
|
ff96cce7c3 | ||
|
|
4a4c649dbb | ||
|
|
fb825acbd5 | ||
|
|
f83bfa17ff | ||
|
|
24ddd81d7d | ||
|
|
0fb8f3d487 | ||
|
|
7ca2b9ad9c | ||
|
|
3124943292 | ||
|
|
8240984ca8 | ||
|
|
ce41b5a3cb | ||
|
|
8fd93907fd | ||
|
|
8056b32450 | ||
|
|
fabd08af1e | ||
|
|
33a8265a11 | ||
|
|
d96682a798 | ||
|
|
64d04a75f3 | ||
|
|
bf22ef2a82 | ||
|
|
dfd3444ae7 |
@@ -413,6 +413,14 @@ jobs:
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
run: |
|
||||
api="$GITHUB_API_URL/repos/$GITHUB_REPOSITORY/actions/caches"
|
||||
# The save step reports success even when its tar failed, so keep
|
||||
# the older entries unless the new one is listed.
|
||||
if ! curl -sSf -H "Authorization: Bearer $GH_TOKEN" \
|
||||
"$api?ref=$GITHUB_REF&key=$CCACHE_ENTRY" \
|
||||
| jq -e --arg entry "$CCACHE_ENTRY" 'any(.actions_caches[]; .key == $entry)' > /dev/null; then
|
||||
echo "$CCACHE_ENTRY was not saved; keeping the older entries."
|
||||
exit 0
|
||||
fi
|
||||
curl -sSf -H "Authorization: Bearer $GH_TOKEN" \
|
||||
"$api?ref=$GITHUB_REF&key=ccache-$CCACHE_LEG-&per_page=100" \
|
||||
| jq -r --arg prefix "ccache-$CCACHE_LEG-" --argjson run "$GITHUB_RUN_ID" \
|
||||
|
||||
@@ -798,6 +798,13 @@ jobs:
|
||||
env:
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
run: |
|
||||
# The save step reports success even when its tar failed, so keep
|
||||
# the older entries unless the new one is listed.
|
||||
if ! gh cache list --ref "$GITHUB_REF" --key "$CCACHE_ENTRY" --json key \
|
||||
| jq -e --arg entry "$CCACHE_ENTRY" 'any(.[]; .key == $entry)' > /dev/null; then
|
||||
echo "$CCACHE_ENTRY was not saved; keeping the older entries."
|
||||
exit 0
|
||||
fi
|
||||
gh cache list --ref "$GITHUB_REF" --key "ccache-$CCACHE_LEG-" --limit 100 --json id,key \
|
||||
| jq -r --arg prefix "ccache-$CCACHE_LEG-" --argjson run "$GITHUB_RUN_ID" \
|
||||
'.[] | select((.key | ltrimstr($prefix) | split("-")[0] | tonumber?) < $run) | .id' \
|
||||
|
||||
@@ -5,8 +5,9 @@
|
||||
# re-sliced on its own to see whether it changes the G-code
|
||||
# harness - the GUI-vs-CLI parity harness (metrics only, never fails)
|
||||
# Both test the latest successful build_all.yml Linux AppImage from main, with
|
||||
# sources checked out at the commit that build was made from. Nothing here
|
||||
# gates a build or a PR.
|
||||
# sources checked out at the commit that build was made from; a manual run can
|
||||
# name another branch, or pin one build by its run id. Nothing here gates a
|
||||
# build or a PR.
|
||||
name: Parity Nightly
|
||||
|
||||
on:
|
||||
@@ -20,9 +21,13 @@ on:
|
||||
required: false
|
||||
default: "main"
|
||||
build_branch:
|
||||
description: "branch whose latest successful build_all artifact to test"
|
||||
description: "branch whose newest successful build_all artifact to test (a PR build is the PR merged into its base; sources are checked out at the PR head)"
|
||||
required: false
|
||||
default: "main"
|
||||
build_run_id:
|
||||
description: "build_all run id to test instead of build_branch's newest (same PR caveat)"
|
||||
required: false
|
||||
default: ""
|
||||
fixtures:
|
||||
description: "harness fixture ids, space-separated (empty = all)"
|
||||
required: false
|
||||
@@ -50,14 +55,53 @@ jobs:
|
||||
env:
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
GH_REPO: ${{ github.repository }}
|
||||
BRANCH: ${{ inputs.build_branch || 'main' }}
|
||||
RUN_ID: ${{ inputs.build_run_id }}
|
||||
SCHEDULED: ${{ github.event_name == 'schedule' }}
|
||||
run: |
|
||||
set -euo pipefail
|
||||
gh run list --workflow build_all.yml \
|
||||
--branch "${{ inputs.build_branch || 'main' }}" \
|
||||
--status success --limit 1 --json databaseId,headSha \
|
||||
--jq '"run_id=\(.[0].databaseId)\nhead_sha=\(.[0].headSha)"' \
|
||||
>> "$GITHUB_OUTPUT"
|
||||
if [ -n "$RUN_ID" ]; then
|
||||
[[ $RUN_ID =~ ^[0-9]+$ ]] || { echo "build_run_id must be a numeric run id, got '$RUN_ID'" >&2; exit 1; }
|
||||
# a pinned build is read directly, not through a search; it must come
|
||||
# from this repository, because the later jobs check out its commit here
|
||||
found=$(gh api "repos/$GH_REPO/actions/runs/$RUN_ID" --jq \
|
||||
'select(.path == ".github/workflows/build_all.yml" and .conclusion == "success"
|
||||
and .head_repository.full_name == env.GH_REPO)
|
||||
| "\(.id) \(.head_sha) \(.created_at)"')
|
||||
[ -n "$found" ] || { echo "run $RUN_ID is not a successful build_all run of $GH_REPO" >&2; exit 1; }
|
||||
else
|
||||
# GitHub serves filtered run listings (branch=, status=, head_sha=, ...)
|
||||
# from a search index that has returned weeks-old results, while the
|
||||
# unfiltered listing stays current, so list unfiltered and filter here.
|
||||
# The repository check keeps out fork PRs whose branch has the same
|
||||
# name. A feature branch is normally built only for its PR, and a PR
|
||||
# build compiles the PR merged into its base rather than head_sha, so
|
||||
# a build of the branch itself (push or dispatch) is preferred when
|
||||
# the same page has one.
|
||||
pick='([.workflow_runs[] | select(.head_branch == env.BRANCH and .conclusion == "success"
|
||||
and .head_repository.full_name == env.GH_REPO)]
|
||||
| map(select(.event != "pull_request"))[0] // .[0])
|
||||
| select(.) | "\(.id) \(.head_sha) \(.created_at)"'
|
||||
# a page of 100 runs spans about a day and a half; a manual run may
|
||||
# target a branch that last built weeks ago
|
||||
pages=3
|
||||
if [ "$SCHEDULED" != true ]; then pages=20; fi
|
||||
found=""
|
||||
for page in $(seq "$pages"); do
|
||||
found=$(gh api "repos/$GH_REPO/actions/workflows/build_all.yml/runs?per_page=100&page=$page" --jq "$pick")
|
||||
if [ -n "$found" ]; then break; fi
|
||||
done
|
||||
[ -n "$found" ] || { echo "no successful $BRANCH build among the last $((pages * 100)) build_all runs; pass build_run_id to test an older one" >&2; exit 1; }
|
||||
fi
|
||||
read -r run_id head_sha created <<< "$found"
|
||||
# the nightly fails rather than report on a stale build
|
||||
if [ "$SCHEDULED" = true ] && [ $(( $(date +%s) - $(date -d "$created" +%s) )) -gt 172800 ]; then
|
||||
echo "newest $BRANCH build $run_id is from $created, over 48 hours old" >&2
|
||||
exit 1
|
||||
fi
|
||||
printf 'run_id=%s\nhead_sha=%s\n' "$run_id" "$head_sha" >> "$GITHUB_OUTPUT"
|
||||
cat "$GITHUB_OUTPUT"
|
||||
echo "Testing build [$run_id](https://github.com/$GH_REPO/actions/runs/$run_id) of \`$head_sha\`, built $created" >> "$GITHUB_STEP_SUMMARY"
|
||||
|
||||
effect:
|
||||
name: Override sweep effect stage (shard ${{ matrix.shard }})
|
||||
|
||||
|
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 |
@@ -1,21 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "BETA ABS @base",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"from": "system",
|
||||
"filament_id": "OFjUXn67",
|
||||
"instantiation": "false",
|
||||
"description": "When printing this filament, there's a risk of warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
|
||||
"filament_cost": [
|
||||
"24.99"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"BETA"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"7.4"
|
||||
]
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "BETA HIPS @base",
|
||||
"inherits": "fdm_filament_hips",
|
||||
"from": "system",
|
||||
"filament_id": "OFlmxlDG",
|
||||
"instantiation": "false",
|
||||
"filament_is_support": [
|
||||
"1"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"BETA"
|
||||
]
|
||||
}
|
||||
@@ -1,48 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "BETA PAHT-CF @base",
|
||||
"inherits": "fdm_filament_pa",
|
||||
"from": "system",
|
||||
"filament_id": "OF6qw3Wb",
|
||||
"instantiation": "false",
|
||||
"description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
|
||||
"fan_cooling_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"filament_cost": [
|
||||
"94.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.06"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.96"
|
||||
],
|
||||
"filament_type": [
|
||||
"PA-CF"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"BETA"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"2"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"13.3"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"40"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"0%"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"180"
|
||||
]
|
||||
}
|
||||
@@ -1,33 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "BETA PEBA 90A @base",
|
||||
"inherits": "fdm_filament_tpu",
|
||||
"from": "system",
|
||||
"filament_id": "OFI2MKy7",
|
||||
"instantiation": "false",
|
||||
"description": "This filament is too soft and not compatible with the AMS. Printing it is of many requirements, and to get better printing quality, please refer to this wiki: TPU printing guide.",
|
||||
"filament_cost": [
|
||||
"59.99"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2.8"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"BETA"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"87.3"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"225"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"225"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"240"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"14"
|
||||
]
|
||||
}
|
||||
@@ -1,20 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "BETA PLA High Speed @base",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"filament_id": "OF3PDEw3",
|
||||
"instantiation": "false",
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"BETA"
|
||||
]
|
||||
}
|
||||
@@ -1,33 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "BETA TPU 90A @base",
|
||||
"inherits": "fdm_filament_tpu",
|
||||
"from": "system",
|
||||
"filament_id": "OF6Yn69v",
|
||||
"instantiation": "false",
|
||||
"description": "This filament is too soft and not compatible with the AMS. Printing it is of many requirements, and to get better printing quality, please refer to this wiki: TPU printing guide.",
|
||||
"filament_cost": [
|
||||
"59.99"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2.8"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"BETA"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"87.3"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"225"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"225"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"240"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"14"
|
||||
]
|
||||
}
|
||||
@@ -1,27 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "BETA TPU 95A @base",
|
||||
"inherits": "fdm_filament_tpu",
|
||||
"from": "system",
|
||||
"filament_id": "OFK7830e",
|
||||
"instantiation": "false",
|
||||
"description": "This filament is too soft and not compatible with the AMS. Printing it is of many requirements, and to get better printing quality, please refer to this wiki: TPU printing guide.",
|
||||
"filament_cost": [
|
||||
"41.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.22"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"BETA"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"88.7"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"230"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
@@ -1,27 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "BETA TPU 98A @base",
|
||||
"inherits": "fdm_filament_tpu",
|
||||
"from": "system",
|
||||
"filament_id": "OFzaq7Yg",
|
||||
"instantiation": "false",
|
||||
"description": "This filament is too soft and not compatible with the AMS. Printing it is of many requirements, and to get better printing quality, please refer to this wiki: TPU printing guide.",
|
||||
"filament_cost": [
|
||||
"41.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.22"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"BETA"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"88.7"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"230"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"230"
|
||||
]
|
||||
}
|
||||
@@ -1,33 +0,0 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "BETA TPU Matte @base",
|
||||
"inherits": "fdm_filament_tpu",
|
||||
"from": "system",
|
||||
"filament_id": "OF4QZANi",
|
||||
"instantiation": "false",
|
||||
"description": "This filament is too soft and not compatible with the AMS. Printing it is of many requirements, and to get better printing quality, please refer to this wiki: TPU printing guide.",
|
||||
"filament_cost": [
|
||||
"59.99"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2.8"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"BETA"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"87.3"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"225"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"225"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"240"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"14"
|
||||
]
|
||||
}
|
||||
@@ -1,41 +1,41 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL A1 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_08",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"20"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL A1 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_08",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"20"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,43 +1,46 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL A1",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_07",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"20"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL A1",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_07",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"20"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,210 +1,113 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2C 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_23",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2C 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_23",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,204 +1,141 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2C 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_34",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2C 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_34",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"30",
|
||||
"25"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,204 +1,127 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2C 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_35",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2C 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_35",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,204 +1,141 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2C",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_22",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.6"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2C",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_22",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"30",
|
||||
"20"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.6",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,134 +1,83 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2D 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_12",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2D 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_12",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,138 +1,109 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2D 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_29",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_extruder_id": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2D 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_29",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35",
|
||||
"25"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,134 +1,99 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2D 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_13",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2D 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_13",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,134 +1,109 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2D",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_11",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2D",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_11",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"35",
|
||||
"20"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,134 +1,53 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2DP 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_17",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2DP 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_17",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,134 +1,69 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2DP 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_31",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2DP 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_31",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,134 +1,69 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2DP 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_18",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2DP 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_18",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,134 +1,69 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2DP",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_16",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2DP",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_16",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,143 +1,104 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2S 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_25",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2S 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_25",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,140 +1,125 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2S 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_33",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2S 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_33",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35",
|
||||
"25"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,140 +1,113 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2S 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_32",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2S 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_32",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,140 +1,125 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2S",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_24",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2S",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_24",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"35",
|
||||
"20"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
]
|
||||
}
|
||||
@@ -1,174 +1,93 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL P2S 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_14",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL P2S 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_14",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
@@ -1,174 +1,105 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL P2S 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_36",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL P2S 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_36",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"35",
|
||||
"16"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,177 +1,93 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL P2S 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_15",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL P2S 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_15",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
@@ -1,174 +1,108 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL P2S",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_10",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"25"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL P2S",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_10",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"25",
|
||||
"16"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,127 +1,58 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1C 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_00",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.2 nozzle",
|
||||
"Bambu Lab X1 0.2 nozzle",
|
||||
"Bambu Lab P1S 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1C 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_00",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.2 nozzle",
|
||||
"Bambu Lab X1 0.2 nozzle",
|
||||
"Bambu Lab P1S 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -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"
|
||||
]
|
||||
}
|
||||
@@ -1,130 +1,58 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1C 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_01",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1C 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_01",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"nil"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,130 +1,74 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1C",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"16"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1C",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"40"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"25"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"40"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"0.6"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,125 +1,56 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1E 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_05",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1E 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_05",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,128 +1,56 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1E 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_06",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1E 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_06",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"nil"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,126 +1,61 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1E",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_04",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"16"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1E",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_04",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"16"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"nil"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,299 +1,134 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X2D 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_20",
|
||||
"instantiation": "true",
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow",
|
||||
"Bowden Standard",
|
||||
"Bowden High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3",
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50",
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30",
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_bridge_speed": [
|
||||
"25",
|
||||
"25",
|
||||
"25",
|
||||
"25"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14",
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"80"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2",
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X2D 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_20",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"80"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3",
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2",
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift",
|
||||
"nil"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_bowden"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
@@ -1,299 +1,163 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X2D 0.4 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_09",
|
||||
"instantiation": "true",
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow",
|
||||
"Bowden Standard",
|
||||
"Bowden High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50",
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30",
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_bridge_speed": [
|
||||
"25",
|
||||
"25",
|
||||
"25",
|
||||
"25"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14",
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"25",
|
||||
"16",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X2D 0.4 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_09",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"25",
|
||||
"16",
|
||||
"16",
|
||||
"18",
|
||||
"16"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_bowden_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,299 +1,134 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X2D 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_30",
|
||||
"instantiation": "true",
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow",
|
||||
"Bowden Standard",
|
||||
"Bowden High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50",
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30",
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_bridge_speed": [
|
||||
"25",
|
||||
"25",
|
||||
"25",
|
||||
"25"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14",
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"35",
|
||||
"16",
|
||||
"16"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X2D 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_30",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"35",
|
||||
"16",
|
||||
"16"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift",
|
||||
"nil"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_bowden"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
@@ -1,299 +1,160 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X2D",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_19",
|
||||
"instantiation": "true",
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow",
|
||||
"Bowden Standard",
|
||||
"Bowden High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50",
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30",
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_bridge_speed": [
|
||||
"25",
|
||||
"25",
|
||||
"25",
|
||||
"25"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14",
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"35",
|
||||
"16",
|
||||
"16"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X2D",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_19",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"35",
|
||||
"16",
|
||||
"16",
|
||||
"16",
|
||||
"16"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"nil",
|
||||
"0.4",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"1",
|
||||
"nil",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"1",
|
||||
"nil",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_bowden_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,21 +1,21 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @base",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"from": "system",
|
||||
"filament_id": "OFhuaUQB",
|
||||
"instantiation": "false",
|
||||
"description": "When printing this filament, there's a risk of warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
|
||||
"filament_cost": [
|
||||
"24.99"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"7.4"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @base",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"from": "system",
|
||||
"filament_id": "OFhuaUQB",
|
||||
"instantiation": "false",
|
||||
"description": "When printing this filament, there's a risk of warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
|
||||
"filament_cost": [
|
||||
"15.99"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"7.4"
|
||||
]
|
||||
}
|
||||
@@ -1,19 +1,19 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL A1",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_02",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL A1",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_02",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,174 +1,86 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2C 0.4 nozzle",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_08",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2C 0.4 nozzle",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_08",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,175 +1,87 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2C",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_09",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.6 nozzle",
|
||||
"Bambu Lab H2C 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2C",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_09",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.6 nozzle",
|
||||
"Bambu Lab H2C 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,130 +1,61 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2D",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_03",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2D",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_03",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,130 +1,49 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2DP",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_05",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2DP",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_05",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,130 +1,71 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2S",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_10",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2S",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_10",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,121 +1,52 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL P1P",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_01",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL P1P",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_01",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,170 +1,70 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL P2S",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_04",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL P2S",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_04",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
@@ -1,130 +1,61 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL X1C",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_00",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL X1C",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_00",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,266 +1,103 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL X2D 0.4 nozzle",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_06",
|
||||
"instantiation": "true",
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow",
|
||||
"Bowden Standard",
|
||||
"Bowden High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50",
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30",
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_bridge_speed": [
|
||||
"25",
|
||||
"25",
|
||||
"25",
|
||||
"25"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14",
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"1",
|
||||
"1",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12",
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL X2D 0.4 nozzle",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_06",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12",
|
||||
"12",
|
||||
"12",
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_bowden_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
@@ -1,267 +1,104 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL X2D",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_07",
|
||||
"instantiation": "true",
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow",
|
||||
"Bowden Standard",
|
||||
"Bowden High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50",
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30",
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_bridge_speed": [
|
||||
"25",
|
||||
"25",
|
||||
"25",
|
||||
"25"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14",
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"1",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12",
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL X2D",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_07",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12",
|
||||
"12",
|
||||
"12",
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_bowden_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
@@ -1,45 +1,45 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @base",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"from": "system",
|
||||
"filament_id": "OFknl9Iz",
|
||||
"instantiation": "false",
|
||||
"description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
|
||||
"fan_cooling_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"filament_cost": [
|
||||
"29.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.08"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_type": [
|
||||
"ABS-GF"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"5.3"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"30"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"10%"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @base",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"from": "system",
|
||||
"filament_id": "OFknl9Iz",
|
||||
"instantiation": "false",
|
||||
"description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
|
||||
"fan_cooling_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"filament_cost": [
|
||||
"26.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.08"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_type": [
|
||||
"ABS-GF"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"5.3"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"30"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"10%"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
]
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL A1 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_10",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL A1 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_10",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL A1 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_09",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL A1 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_09",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,21 +1,21 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL A1 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_08",
|
||||
"instantiation": "true",
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL A1 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_08",
|
||||
"instantiation": "true",
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,201 +1,104 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2C 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_24",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"85"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2C 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_24",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"85"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,198 +1,135 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2C 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_37",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.96",
|
||||
"0.96"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"85"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2C 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_37",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.96",
|
||||
"0.96",
|
||||
"0.96"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"30",
|
||||
"25"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"85"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,198 +1,121 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2C 0.8 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_38",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.96",
|
||||
"0.96"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"85"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2C 0.8 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_38",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.96",
|
||||
"0.96"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"85"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,198 +1,135 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2C",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_23",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.96",
|
||||
"0.96"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.6"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"85"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2C",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_23",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.96",
|
||||
"0.96",
|
||||
"0.96"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"30",
|
||||
"20"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.6",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"85"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,128 +1,77 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2D 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_12",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2D 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_12",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,149 +1,103 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2D 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_13",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.007"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.003"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.1"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.006"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.25"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"-0.088"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.14"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2D 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_13",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"35",
|
||||
"20"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,128 +1,103 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2D 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_11",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2D 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_11",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35",
|
||||
"25"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,132 +1,97 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2D 0.8 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_33",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_extruder_id": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2D 0.8 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_33",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_extruder_id": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,128 +1,47 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2DP 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_18",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2DP 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_18",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,149 +1,84 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2DP 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_19",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.007"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.003"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.1"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.006"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.25"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"-0.088"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.14"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2DP 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_19",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.007"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.003"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.1"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.006"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.25"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.14"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"-0.088"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,128 +1,63 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2DP 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_17",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2DP 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_17",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,128 +1,63 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2DP 0.8 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_34",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2DP 0.8 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_34",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,134 +1,95 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2S 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_27",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2S 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_27",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,134 +1,119 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2S 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_36",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2S 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_36",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35",
|
||||
"25"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,134 +1,107 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2S 0.8 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_35",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2S 0.8 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_35",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||