Compare commits

...
Author SHA1 Message Date
Ian Chua 0030bed519 fix: ota updates workflow 2026-09-23 20:37:25 +08:00
SoftFever 7758332406 Restore the Bambu Lab bed-model offset so stock BambuStudio meshes line up 2026-09-23 14:58:41 +08:00
SoftFever cc883e458d Sync Bambu Lab profiles with BambuStudio
Polymaker, Overture and eSUN presets move from brand subfolders to
BBL/filament/, matching BambuStudio's layout; their names and ids are
unchanged. Default filament lists keep pointing at presets that exist,
0.2 mm nozzles keep a default PLA, and user presets based on removed or
renamed presets still load. Generic SBS is no longer in the Bambu bundle;
new selections on those printers fall back to OrcaFilamentLibrary's
Generic SBS @System. The profile tool now recognises BambuStudio's new
filament id/name maps and support_recommended_params.json as data files.
2026-09-23 14:58:41 +08:00
2609 changed files with 199204 additions and 264797 deletions
+88
View File
@@ -0,0 +1,88 @@
name: Daily OFL OTA Update
# This workflow is intended for creating and publishing the OrcaFilamentLibrary (OFL) OPC package to
# https://github.com/OrcaSlicer/orcaslicer-profiles, which generates an OTA update.
# This cronjob runs daily at 00:00 UTC every day and scans main plus every release/vX.Y.Z branch for
# changes to resources/profiles/OrcaFilamentLibrary since that branch's own last successful run. Any
# branch with no changes is skipped; each changed branch gets its own post_merge_profiles.yml dispatch.
#
# OFL has no dedicated FOLDER_MERGERS grant (it isn't merged through the PR merge-bot delegation
# scheme), so post_merge_profiles.yml is dispatched with an explicit `vendor` input, which that
# workflow trusts and uses to bypass the FOLDER_MERGERS check for this trigger. That same explicit-
# vendor-dispatch path is also what makes post_merge_profiles.yml call the OTA auto-publish API after
# uploading - see post_merge_profiles.yml for both sides of that contract.
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
permissions:
actions: write # list this workflow's past runs and dispatch post_merge_profiles.yml
contents: read
env:
VENDOR: OrcaFilamentLibrary
jobs:
daily-job:
if: ${{ github.repository == 'OrcaSlicer/OrcaSlicer' }}
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v7
with:
# Full history: the per-branch "since last successful run" check below
# needs to look arbitrarily far back if a prior run failed or was skipped.
fetch-depth: 0
- name: Fetch all branches
shell: bash
run: git fetch origin '+refs/heads/*:refs/remotes/origin/*'
- name: Scan branches and publish changed OFL profiles
shell: bash
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -euo pipefail
mapfile -t branches < <(
gh api "repos/${{ github.repository }}/branches" --paginate --jq '.[].name' \
| grep -E '^(main|release/v[0-9]+\.[0-9]+\.[0-9]+)$' | sort -u
)
for branch in "${branches[@]}"; do
echo "::group::$branch"
since="$(gh api "repos/${{ github.repository }}/actions/workflows/ofl-ota-cronjob.yml/runs" \
-f status=success -f branch="$branch" -f per_page=1 \
--jq '.workflow_runs[0].run_started_at // empty')"
if [ -z "$since" ]; then
echo "No prior successful run for $branch; treating OFL as changed."
changed=true
else
changed_files="$(git log --since="$since" --name-only --pretty=format: "origin/$branch" -- \
resources/profiles/OrcaFilamentLibrary resources/profiles/OrcaFilamentLibrary.json \
| sed '/^$/d')"
if [ -n "$changed_files" ]; then
echo "OFL changed on $branch since $since:"
echo "$changed_files"
changed=true
else
echo "No OFL changes on $branch since $since."
changed=false
fi
fi
if [ "$changed" = true ]; then
gh workflow run post_merge_profiles.yml \
--repo "${{ github.repository }}" \
--ref "$branch" \
-f vendor="$VENDOR"
fi
echo "::endgroup::"
done
+86 -5
View File
@@ -8,6 +8,12 @@ name: Post-merge profiles
# only then does it become a live OTA update - this workflow does none of that
# last part (no changelog, no R2, no webhook).
#
# A workflow_dispatch carrying a `vendor` input (e.g. the daily OFL cron - OFL has
# no FOLDER_MERGERS grant, since it isn't merged through the PR merge-bot delegation
# scheme) publishes that vendor directly and skips the FOLDER_MERGERS check below.
# workflow_dispatch is already a trusted, explicit trigger, unlike the automatic
# push-diff path the FOLDER_MERGERS check exists to gate.
#
# Asset contract expected by OrcaCloud's release scanner:
# ^(\d+\.\d+\.\d+)_([^_]+)_(\d+(?:\.\d+){3})_(\d{12})\.zip$
# <orca_ver>_<vendor>_<profile_version>_<UTC yyyymmddHHMM>.zip (zip root: <vendor>.opc)
@@ -17,13 +23,25 @@ name: Post-merge profiles
on:
push:
branches:
# once v2.5.0 stable is released, this will be removed, so nightly won't receive OTA updates.
- main
- release/*
# release/vX.Y.Z point-release branches only, not the release/vX.Y working
# branch profile PRs land on first - "v*.*.*" requires two literal dots,
# which release/vX.Y (one dot) doesn't have.
- release/v*.*.*
paths:
- 'resources/profiles/**'
- '.github/workflows/post_merge_profiles.yml'
workflow_dispatch:
inputs:
vendor:
description: >-
Publish only this vendor, bypassing the FOLDER_MERGERS grant check.
For trusted explicit dispatches only (e.g. the OFL nightly cron).
Leave empty to fall back to diffing the triggering commit.
required: false
type: string
permissions:
contents: read
@@ -66,8 +84,23 @@ jobs:
shell: bash
env:
FOLDER_MERGERS: ${{ vars.FOLDER_MERGERS }}
DISPATCH_VENDOR: ${{ github.event_name == 'workflow_dispatch' && inputs.vendor || '' }}
run: |
set -euo pipefail
# Explicit vendor dispatch (e.g. the OFL cron): trust the caller and
# skip both the git-diff detection and the FOLDER_MERGERS check below.
if [ -n "$DISPATCH_VENDOR" ]; then
v="$DISPATCH_VENDOR"
json="resources/profiles/$v.json"
if [ ! -f "$json" ] || { [ ! -d "resources/profiles/$v" ] && ! jq -e '.version' "$json" >/dev/null 2>&1; }; then
echo "::error::vendor '$v' has no resources/profiles/$v.json with a profile directory or version field"
exit 1
fi
echo "vendors=$v" >> "$GITHUB_OUTPUT"
exit 0
fi
base='${{ github.event.before }}'
head='${{ github.sha }}'
# Zero SHA (branch created / force push) or manual dispatch: fall back
@@ -101,6 +134,9 @@ jobs:
# sibling bundle JSON are covered by at least one FOLDER_MERGERS
# grant. The account part is intentionally ignored here: this is a
# post-merge safety check, not an authorization check for a command.
# An ineligible vendor (e.g. OrcaFilamentLibrary, which has no grant)
# is dropped on its own - it never blocks other vendors in the same
# push from publishing.
grants=()
while IFS= read -r raw_line; do
line="${raw_line#"${raw_line%%[![:space:]]*}"}"
@@ -127,19 +163,21 @@ jobs:
return 1
}
authorized=()
unauthorized=()
for v in "${vendors[@]}"; do
if ! is_granted "resources/profiles/$v" || ! is_granted "resources/profiles/$v.json"; then
if is_granted "resources/profiles/$v" && is_granted "resources/profiles/$v.json"; then
authorized+=("$v")
else
unauthorized+=("$v")
fi
done
if [ "${#unauthorized[@]}" -ne 0 ]; then
echo "vendors=" >> "$GITHUB_OUTPUT"
exit 0
echo "::warning::skipping vendor(s) with no FOLDER_MERGERS grant (no asset built or published for them this run): ${unauthorized[*]}"
fi
echo "vendors=${vendors[*]}" >> "$GITHUB_OUTPUT"
echo "vendors=${authorized[*]}" >> "$GITHUB_OUTPUT"
- name: Resolve Orca version
id: orca
@@ -242,3 +280,46 @@ jobs:
echo "### Published to \`$repo\` release \`$RELEASE_TAG\`"
for f in "$ASSET_DIR"/*.zip; do echo "- \`$(basename "$f")\`"; done
} >> "$GITHUB_STEP_SUMMARY"
- name: Notify OTA auto-publish
# Only the explicit-vendor-dispatch path (e.g. the OFL cron) goes live
# automatically. The ordinary push path stays human-gated: assets land on
# the profiles release above, and a maintainer still has to attach a
# changelog and hit Publish in OrcaCloud's OTA Manager for those.
if: steps.vendors.outputs.vendors != '' && github.event_name == 'workflow_dispatch' && inputs.vendor != ''
shell: bash
env:
OTA_API_BASE_URL: ${{ vars.OTA_API_BASE_URL }}
OTA_API_KEY: ${{ secrets.OFL_OTA_PUBLISH_KEY }}
ASSET_DIR: ${{ steps.pkg.outputs.dir }}
run: |
set -euo pipefail
[ -n "$OTA_API_BASE_URL" ] || { echo "::error::vars.OTA_API_BASE_URL is not set"; exit 1; }
[ -n "$OTA_API_KEY" ] || { echo "::error::secrets.OFL_OTA_PUBLISH_KEY is not set"; exit 1; }
mapfile -t zip_files < <(cd "$ASSET_DIR" && ls -1 *.zip)
filenames_json="$(printf '%s\n' "${zip_files[@]}" | jq -R . | jq -s .)"
payload="$(jq -n --argjson filenames "$filenames_json" '{filenames: $filenames}')"
resp_file="$RUNNER_TEMP/ota-auto-publish-response.json"
status="$(curl -sS -o "$resp_file" -w '%{http_code}' -X POST \
"${OTA_API_BASE_URL%/}/api/v1/ota/auto-publish" \
-H "Authorization: Bearer $OTA_API_KEY" \
-H 'Content-Type: application/json' \
-d "$payload")"
body="$(cat "$resp_file")"
echo "$body"
if [ "$status" != "200" ]; then
echo "::error::OTA auto-publish call failed with HTTP $status"
exit 1
fi
# A 200 can still carry per-file "error" results (e.g. NOT_FOUND); the
# asset is already safely published to the profiles release above, but
# it never went live, so treat that as a failure worth surfacing loudly.
error_count="$(jq '[.results[] | select(.status == "error")] | length' <<< "$body")"
if [ "$error_count" != "0" ]; then
jq -r '.results[] | select(.status == "error") | "::error::\(.filename): \(.code) - \(.message)"' <<< "$body"
exit 1
fi
+8806 -7474
View File
File diff suppressed because it is too large Load Diff
Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 47 KiB

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 279 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large Load Diff
@@ -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"
]
}
@@ -1,134 +1,119 @@
{
"type": "filament",
"name": "Bambu ASA @BBL H2S",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_26",
"instantiation": "true",
"chamber_temperatures": [
"60"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_flush_temp": [
"0",
"0"
],
"filament_flush_volumetric_speed": [
"0",
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"20",
"35"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil",
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"0.4",
"0.4"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_wipe": [
"1",
"1"
],
"filament_wipe_distance": [
"1",
"1"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"Spiral Lift",
"Spiral Lift"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
],
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_adaptive_volumetric_speed": [
"0",
"0"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"overhang_fan_speed": [
"100"
],
"pre_start_fan_time": [
"2"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"volumetric_speed_coefficients": [
"0 0 0 0 0 0",
"0 0 0 0 0 0"
],
"compatible_printers": [
"Bambu Lab H2S 0.4 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n"
],
"filament_end_gcode": [
"; filament end gcode \n"
]
"type": "filament",
"name": "Bambu ASA @BBL H2S",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_26",
"instantiation": "true",
"chamber_temperatures": [
"60"
],
"counter_coef_2": [
"0.0094"
],
"counter_coef_3": [
"-0.0092"
],
"counter_limit_min": [
"-0.0092"
],
"counter_limit_max": [
"0.2258"
],
"filament_change_length": [
"4"
],
"filament_cooling_before_tower": [
"10",
"10",
"10"
],
"filament_max_volumetric_speed": [
"20",
"35",
"20"
],
"filament_prime_volume": [
"30"
],
"filament_retraction_length": [
"0.4",
"0.4",
"0.4"
],
"filament_wipe": [
"1",
"1",
"1"
],
"filament_wipe_distance": [
"1",
"1",
"1"
],
"filament_z_hop_types": [
"Spiral Lift",
"Spiral Lift",
"Spiral Lift"
],
"filament_ramming_travel_time": [
"0",
"0",
"0"
],
"hole_coef_2": [
"0.0013"
],
"hole_coef_3": [
"0.1261"
],
"hole_limit_min": [
"0.1261"
],
"hole_limit_max": [
"0.1586"
],
"include": [
"fdm_filament_template_direct_dual_e3d"
],
"long_retractions_when_ec": [
"0",
"0",
"0"
],
"nozzle_temperature": [
"270",
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270",
"270"
],
"overhang_fan_speed": [
"100"
],
"pre_start_fan_time": [
"2"
],
"retraction_distances_when_ec": [
"0",
"0",
"0"
],
"slow_down_min_speed": [
"20",
"20",
"20"
],
"compatible_printers": [
"Bambu Lab H2S 0.4 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n"
],
"filament_end_gcode": [
"; filament end gcode \n"
]
}
@@ -1,192 +1,101 @@
{
"type": "filament",
"name": "Bambu ASA @BBL P2S 0.2 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_15",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"chamber_temperatures": [
"65"
],
"eng_plate_temp": [
"90"
],
"eng_plate_temp_initial_layer": [
"90"
],
"fan_max_speed": [
"60"
],
"fan_min_speed": [
"30"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_flush_temp": [
"0",
"0"
],
"filament_flush_volumetric_speed": [
"3",
"3"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"2",
"2"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_ramming_volumetric_speed_nc": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil",
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"10",
"10"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_wipe": [
"1",
"1"
],
"filament_wipe_distance": [
"1",
"1"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
],
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_pre_cooling_temperature_nc": [
"0",
"0"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_travel_time_nc": [
"0",
"0"
],
"filament_enable_overhang_speed": [
"1",
"1"
],
"filament_overhang_1_4_speed": [
"0",
"0"
],
"filament_overhang_2_4_speed": [
"50",
"50"
],
"filament_overhang_3_4_speed": [
"30",
"30"
],
"filament_overhang_4_4_speed": [
"10",
"10"
],
"filament_overhang_totally_speed": [
"10",
"10"
],
"filament_adaptive_volumetric_speed": [
"0",
"0"
],
"hot_plate_temp": [
"90"
],
"hot_plate_temp_initial_layer": [
"90"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"override_process_overhang_speed": [
"0",
"0"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"textured_plate_temp": [
"90"
],
"textured_plate_temp_initial_layer": [
"90"
],
"volumetric_speed_coefficients": [
"0 0 0 0 0 0",
"0 0 0 0 0 0"
],
"compatible_printers": [
"Bambu Lab P2S 0.2 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n"
]
}
"type": "filament",
"name": "Bambu ASA @BBL P2S 0.2 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_15",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"chamber_temperatures": [
"65"
],
"counter_coef_2": [
"0.0094"
],
"counter_coef_3": [
"-0.0092"
],
"counter_limit_max": [
"0.2258"
],
"counter_limit_min": [
"-0.0092"
],
"fan_max_speed": [
"60"
],
"fan_min_speed": [
"30"
],
"filament_cooling_before_tower": [
"10",
"10"
],
"filament_flush_volumetric_speed": [
"3",
"3"
],
"filament_max_volumetric_speed": [
"2",
"2"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_retraction_distances_when_cut": [
"10",
"10"
],
"filament_wipe": [
"1",
"1"
],
"filament_wipe_distance": [
"1",
"1"
],
"hole_coef_2": [
"0.0013"
],
"hole_coef_3": [
"0.1261"
],
"hole_limit_max": [
"0.1586"
],
"hole_limit_min": [
"0.1261"
],
"include": [
"fdm_filament_template_direct_dual"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"slow_down_min_speed": [
"20",
"20"
],
"compatible_printers": [
"Bambu Lab P2S 0.2 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n"
]
}
@@ -1,186 +1,102 @@
{
"type": "filament",
"name": "Bambu ASA @BBL P2S 0.4 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_16",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"chamber_temperatures": [
"65"
],
"eng_plate_temp": [
"90"
],
"eng_plate_temp_initial_layer": [
"90"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_flush_temp": [
"0",
"0"
],
"filament_flush_volumetric_speed": [
"0",
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"18",
"25"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_ramming_volumetric_speed_nc": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil",
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"10",
"10"
],
"filament_retraction_length": [
"0.4",
"0.4"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"Spiral Lift",
"Spiral Lift"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
],
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_pre_cooling_temperature_nc": [
"0",
"0"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_travel_time_nc": [
"0",
"0"
],
"filament_enable_overhang_speed": [
"1",
"1"
],
"filament_overhang_1_4_speed": [
"0",
"0"
],
"filament_overhang_2_4_speed": [
"50",
"50"
],
"filament_overhang_3_4_speed": [
"30",
"30"
],
"filament_overhang_4_4_speed": [
"10",
"10"
],
"filament_overhang_totally_speed": [
"10",
"10"
],
"filament_adaptive_volumetric_speed": [
"0",
"0"
],
"hot_plate_temp": [
"90"
],
"hot_plate_temp_initial_layer": [
"90"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"override_process_overhang_speed": [
"0",
"0"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"textured_plate_temp": [
"90"
],
"textured_plate_temp_initial_layer": [
"90"
],
"volumetric_speed_coefficients": [
"0 0 0 0 0 0",
"0 0 0 0 0 0"
],
"compatible_printers": [
"Bambu Lab P2S 0.4 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n"
]
"type": "filament",
"name": "Bambu ASA @BBL P2S 0.4 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_16",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"chamber_temperatures": [
"65"
],
"counter_coef_2": [
"0.0094"
],
"counter_coef_3": [
"-0.0092"
],
"counter_limit_min": [
"-0.0092"
],
"counter_limit_max": [
"0.2258"
],
"filament_cooling_before_tower": [
"10",
"10",
"10"
],
"filament_max_volumetric_speed": [
"18",
"25",
"18"
],
"filament_retraction_distances_when_cut": [
"10",
"10",
"10"
],
"filament_retraction_length": [
"0.4",
"0.4",
"0.4"
],
"filament_z_hop_types": [
"Spiral Lift",
"Spiral Lift",
"Spiral Lift"
],
"filament_ramming_travel_time": [
"0",
"0",
"0"
],
"hole_coef_2": [
"0.0013"
],
"hole_coef_3": [
"0.1261"
],
"hole_limit_min": [
"0.1261"
],
"hole_limit_max": [
"0.1586"
],
"include": [
"fdm_filament_template_direct_dual_e3d"
],
"long_retractions_when_ec": [
"0",
"0",
"0"
],
"nozzle_temperature": [
"270",
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0",
"0"
],
"slow_down_min_speed": [
"20",
"20",
"20"
],
"compatible_printers": [
"Bambu Lab P2S 0.4 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n"
]
}
@@ -1,189 +1,115 @@
{
"type": "filament",
"name": "Bambu ASA @BBL P2S 0.6 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_14",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"chamber_temperatures": [
"65"
],
"eng_plate_temp": [
"90"
],
"eng_plate_temp_initial_layer": [
"90"
],
"fan_min_speed": [
"25"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_flush_temp": [
"0",
"0"
],
"filament_flush_volumetric_speed": [
"0",
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"18",
"35"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_ramming_volumetric_speed_nc": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil",
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"10",
"10"
],
"filament_retraction_length": [
"0.4",
"0.4"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_wipe": [
"1",
"1"
],
"filament_wipe_distance": [
"1",
"1"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"Spiral Lift",
"Spiral Lift"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
],
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_pre_cooling_temperature_nc": [
"0",
"0"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_travel_time_nc": [
"0",
"0"
],
"filament_enable_overhang_speed": [
"1",
"1"
],
"filament_overhang_1_4_speed": [
"0",
"0"
],
"filament_overhang_2_4_speed": [
"50",
"50"
],
"filament_overhang_3_4_speed": [
"30",
"30"
],
"filament_overhang_4_4_speed": [
"10",
"10"
],
"filament_overhang_totally_speed": [
"10",
"10"
],
"filament_adaptive_volumetric_speed": [
"0",
"0"
],
"hot_plate_temp": [
"90"
],
"hot_plate_temp_initial_layer": [
"90"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"override_process_overhang_speed": [
"0",
"0"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"textured_plate_temp": [
"90"
],
"textured_plate_temp_initial_layer": [
"90"
],
"volumetric_speed_coefficients": [
"0 0 0 0 0 0",
"0 0 0 0 0 0"
],
"compatible_printers": [
"Bambu Lab P2S 0.6 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n"
]
"type": "filament",
"name": "Bambu ASA @BBL P2S 0.6 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_14",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"chamber_temperatures": [
"65"
],
"counter_coef_2": [
"0.0094"
],
"counter_coef_3": [
"-0.0092"
],
"counter_limit_min": [
"-0.0092"
],
"counter_limit_max": [
"0.2258"
],
"fan_min_speed": [
"25"
],
"filament_cooling_before_tower": [
"10",
"10",
"10"
],
"filament_max_volumetric_speed": [
"18",
"35",
"18"
],
"filament_retraction_distances_when_cut": [
"10",
"10",
"10"
],
"filament_retraction_length": [
"0.4",
"0.4",
"0.4"
],
"filament_wipe": [
"1",
"1",
"1"
],
"filament_wipe_distance": [
"1",
"1",
"1"
],
"filament_z_hop_types": [
"Spiral Lift",
"Spiral Lift",
"Spiral Lift"
],
"filament_ramming_travel_time": [
"0",
"0",
"0"
],
"hole_coef_2": [
"0.0013"
],
"hole_coef_3": [
"0.1261"
],
"hole_limit_min": [
"0.1261"
],
"hole_limit_max": [
"0.1586"
],
"include": [
"fdm_filament_template_direct_dual_e3d"
],
"long_retractions_when_ec": [
"0",
"0",
"0"
],
"nozzle_temperature": [
"270",
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0",
"0"
],
"slow_down_min_speed": [
"20",
"20",
"20"
],
"compatible_printers": [
"Bambu Lab P2S 0.6 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n"
]
}
@@ -1,186 +1,91 @@
{
"type": "filament",
"name": "Bambu ASA @BBL P2S 0.8 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_32",
"instantiation": "true",
"chamber_temperatures": [
"65"
],
"eng_plate_temp": [
"90"
],
"eng_plate_temp_initial_layer": [
"90"
],
"fan_min_speed": [
"25"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_flush_temp": [
"0",
"0"
],
"filament_flush_volumetric_speed": [
"0",
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"18",
"35"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_ramming_volumetric_speed_nc": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil",
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"10",
"10"
],
"filament_retraction_length": [
"0.4",
"0.4"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"Spiral Lift",
"Spiral Lift"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
],
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_pre_cooling_temperature_nc": [
"0",
"0"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_travel_time_nc": [
"0",
"0"
],
"filament_enable_overhang_speed": [
"1",
"1"
],
"filament_overhang_1_4_speed": [
"0",
"0"
],
"filament_overhang_2_4_speed": [
"50",
"50"
],
"filament_overhang_3_4_speed": [
"30",
"30"
],
"filament_overhang_4_4_speed": [
"10",
"10"
],
"filament_overhang_totally_speed": [
"10",
"10"
],
"filament_adaptive_volumetric_speed": [
"0",
"0"
],
"hot_plate_temp": [
"90"
],
"hot_plate_temp_initial_layer": [
"90"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"override_process_overhang_speed": [
"0",
"0"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"textured_plate_temp": [
"90"
],
"textured_plate_temp_initial_layer": [
"90"
],
"volumetric_speed_coefficients": [
"0 0 0 0 0 0",
"0 0 0 0 0 0"
],
"compatible_printers": [
"Bambu Lab P2S 0.8 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n"
]
}
"type": "filament",
"name": "Bambu ASA @BBL P2S 0.8 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_32",
"instantiation": "true",
"chamber_temperatures": [
"65"
],
"counter_coef_2": [
"0.0094"
],
"counter_coef_3": [
"-0.0092"
],
"counter_limit_max": [
"0.2258"
],
"counter_limit_min": [
"-0.0092"
],
"fan_min_speed": [
"25"
],
"filament_cooling_before_tower": [
"10",
"10"
],
"filament_max_volumetric_speed": [
"18",
"35"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_retraction_distances_when_cut": [
"10",
"10"
],
"filament_retraction_length": [
"0.4",
"0.4"
],
"filament_z_hop_types": [
"Spiral Lift",
"Spiral Lift"
],
"hole_coef_2": [
"0.0013"
],
"hole_coef_3": [
"0.1261"
],
"hole_limit_max": [
"0.1586"
],
"hole_limit_min": [
"0.1261"
],
"include": [
"fdm_filament_template_direct_dual"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"slow_down_min_speed": [
"20",
"20"
],
"compatible_printers": [
"Bambu Lab P2S 0.8 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n"
]
}
@@ -1,119 +1,50 @@
{
"type": "filament",
"name": "Bambu ASA @BBL X1 0.2 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_03",
"instantiation": "true",
"filament_long_retractions_when_cut": [
"1",
"1"
],
"filament_max_volumetric_speed": [
"2",
"2"
],
"filament_retraction_distances_when_cut": [
"18",
"18"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_flush_temp": [
"0",
"0"
],
"filament_flush_volumetric_speed": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil",
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
],
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_adaptive_volumetric_speed": [
"0",
"0"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"volumetric_speed_coefficients": [
"0 0 0 0 0 0",
"0 0 0 0 0 0"
],
"compatible_printers": [
"Bambu Lab X1 0.2 nozzle"
]
}
"type": "filament",
"name": "Bambu ASA @BBL X1 0.2 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_03",
"instantiation": "true",
"filament_long_retractions_when_cut": [
"1",
"1"
],
"filament_max_volumetric_speed": [
"2",
"2"
],
"filament_retraction_distances_when_cut": [
"18",
"18"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"include": [
"fdm_filament_template_direct_dual"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"slow_down_min_speed": [
"20",
"20"
],
"compatible_printers": [
"Bambu Lab X1 0.2 nozzle"
]
}
@@ -1,125 +1,60 @@
{
"type": "filament",
"name": "Bambu ASA @BBL X1 0.6 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_04",
"instantiation": "true",
"fan_min_speed": [
"25"
],
"filament_long_retractions_when_cut": [
"1",
"1"
],
"filament_retraction_distances_when_cut": [
"18",
"18"
],
"filament_retraction_speed": [
"0.4",
"0.4"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_max_volumetric_speed": [
"18",
"18"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_flush_temp": [
"0",
"0"
],
"filament_flush_volumetric_speed": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil",
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
],
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_adaptive_volumetric_speed": [
"0",
"0"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"textured_plate_temp_initial_layer": [
"V"
],
"volumetric_speed_coefficients": [
"0 0 0 0 0 0",
"0 0 0 0 0 0"
],
"compatible_printers": [
"Bambu Lab X1 0.6 nozzle"
]
}
"type": "filament",
"name": "Bambu ASA @BBL X1 0.6 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_04",
"instantiation": "true",
"fan_min_speed": [
"25"
],
"filament_long_retractions_when_cut": [
"1",
"1"
],
"filament_max_volumetric_speed": [
"18",
"18"
],
"filament_retraction_distances_when_cut": [
"18",
"18"
],
"filament_retraction_speed": [
"0.4",
"0.4"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"include": [
"fdm_filament_template_direct_dual"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"slow_down_min_speed": [
"20",
"20"
],
"textured_plate_temp_initial_layer": [
"V"
],
"compatible_printers": [
"Bambu Lab X1 0.6 nozzle"
]
}
@@ -1,121 +1,52 @@
{
"type": "filament",
"name": "Bambu ASA @BBL X1C 0.2 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_01",
"instantiation": "true",
"filament_long_retractions_when_cut": [
"1",
"1"
],
"filament_max_volumetric_speed": [
"2",
"2"
],
"filament_retraction_distances_when_cut": [
"18",
"18"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_flush_temp": [
"0",
"0"
],
"filament_flush_volumetric_speed": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil",
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
],
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_adaptive_volumetric_speed": [
"0",
"0"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"volumetric_speed_coefficients": [
"0 0 0 0 0 0",
"0 0 0 0 0 0"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.2 nozzle",
"Bambu Lab P1S 0.2 nozzle",
"Bambu Lab P1P 0.2 nozzle"
]
}
"type": "filament",
"name": "Bambu ASA @BBL X1C 0.2 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_01",
"instantiation": "true",
"filament_long_retractions_when_cut": [
"1",
"1"
],
"filament_max_volumetric_speed": [
"2",
"2"
],
"filament_retraction_distances_when_cut": [
"18",
"18"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"include": [
"fdm_filament_template_direct_dual"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"slow_down_min_speed": [
"20",
"20"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.2 nozzle",
"Bambu Lab P1S 0.2 nozzle",
"Bambu Lab P1P 0.2 nozzle"
]
}
@@ -1,126 +1,65 @@
{
"type": "filament",
"name": "Bambu ASA @BBL X1C 0.4 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_02",
"instantiation": "true",
"chamber_temperatures": [
"60"
],
"filament_long_retractions_when_cut": [
"1",
"1"
],
"filament_retraction_distances_when_cut": [
"18",
"18"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_max_volumetric_speed": [
"18",
"18"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_flush_temp": [
"0",
"0"
],
"filament_flush_volumetric_speed": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil",
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
],
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_adaptive_volumetric_speed": [
"0",
"0"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"volumetric_speed_coefficients": [
"0 0 0 0 0 0",
"0 0 0 0 0 0"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.8 nozzle"
]
}
"type": "filament",
"name": "Bambu ASA @BBL X1C 0.4 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_02",
"instantiation": "true",
"chamber_temperatures": [
"60"
],
"filament_long_retractions_when_cut": [
"1",
"1"
],
"filament_max_volumetric_speed": [
"18",
"25"
],
"filament_retraction_distances_when_cut": [
"18",
"18"
],
"filament_retraction_length": [
"nil",
"0.4"
],
"filament_z_hop": [
"nil",
"0.6"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"include": [
"fdm_filament_template_direct_dual"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"slow_down_min_speed": [
"20",
"20"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1P 0.4 nozzle"
]
}
@@ -1,127 +1,66 @@
{
"type": "filament",
"name": "Bambu ASA @BBL X1C",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_00",
"instantiation": "true",
"fan_min_speed": [
"25"
],
"filament_long_retractions_when_cut": [
"1",
"1"
],
"filament_retraction_distances_when_cut": [
"18",
"18"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_max_volumetric_speed": [
"18",
"18"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_flush_temp": [
"0",
"0"
],
"filament_flush_volumetric_speed": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil",
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
],
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_adaptive_volumetric_speed": [
"0",
"0"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"volumetric_speed_coefficients": [
"0 0 0 0 0 0",
"0 0 0 0 0 0"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab P1P 0.6 nozzle"
]
}
"type": "filament",
"name": "Bambu ASA @BBL X1C",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_00",
"instantiation": "true",
"fan_min_speed": [
"25"
],
"filament_long_retractions_when_cut": [
"1",
"1"
],
"filament_max_volumetric_speed": [
"18",
"25"
],
"filament_retraction_distances_when_cut": [
"18",
"18"
],
"filament_retraction_length": [
"nil",
"0.4"
],
"filament_z_hop": [
"nil",
"0.6"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"include": [
"fdm_filament_template_direct_dual"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"slow_down_min_speed": [
"20",
"20"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1P 0.6 nozzle"
]
}

Some files were not shown because too many files have changed in this diff Show More