Compare commits

..
Author SHA1 Message Date
Hanif Koh 13f4959e5f Test That Slab Slicing Does Not Depend on the Thread Schedule
Projects a dense, tilted sphere with slice_mesh_slabs() on one thread and
then three times multi-threaded, and requires the polygons to match exactly,
vertex order included. Fails without the canonical line sort, passes with it.
2026-09-25 17:03:42 +08:00
Hanif Koh 4e43ab8306 Make Painted Multi-Material Slicing Deterministic
Painted (multi-material) models sliced to slightly different G-code on
every run: ±1 µm wall coordinates and reordered islands. Hashing each stage
of the segmentation across runs showed the projected painted lines and the
per-layer Voronoi segmentation were stable; the raw top/bottom projections
from slice_mesh_slabs() were not. Three causes, all thread-order dependent:

- slice_slabs_make_lines() appends each slab's intersection lines from a
  parallel facet loop and never restored a canonical order, so the loop
  start vertices and polygon order from make_slab_loops() depended on
  scheduling. Sort every slab's lines with the same key slice_make_lines()
  already uses.
- segmentation_top_and_bottom_layers() wrote a layer's shell projections
  into neighbouring layers' vectors from the parallel loop, relying on a
  parity double-buffer that assumes TBB ranges are exactly one group wide
  and aligned, which blocked_range does not guarantee; two threads could
  append to the same vector. Each source layer now records its projections
  in its own slot and they are gathered per target layer in source order.
- The painted-line sort in post_process_painted_lines() was not a total
  order: projections of one span from facets of different colours tied on
  every key and the first one won the span. Colour and end points now break
  the tie.

Three multi-threaded runs of each painted fixture now give one G-code;
unpainted output is unchanged.
2026-09-25 15:00:04 +08:00
HanifKoh ddf9b85169 Reserve the Prime Tower When the CLI Arranges a Project (#15837)
The global arrange branch, taken by --arrange with all plates selected, only
reserved the prime tower when filament ids had been given on the command
line for STL input. A project carries its filament use per plate and its own
tower positions, but that set was empty for it, so the tower was never an
obstacle: the arranged pile was centred over it and the slice then failed on
a G-code path conflict.

When no filament ids were given, count the filaments each plate uses and
reserve a tower on every plate that needs one, keeping the project's tower
position instead of resetting it to the default. Only a tower the slicer will
print is reserved: the prime tower must be enabled, and a by-object print
gets none unless a smooth timelapse needs it, as the per-plate arrange
decides. Overflow beds are sized for the busiest plate. The STL route is
unchanged.
2026-09-25 08:39:52 +08:00
HanifKoh af52da061f Report Per-Object Slicing Errors in the CLI (#15834)
G-code generation collects errors raised per object, such as an empty
first layer, into one SlicingErrors exception whose own message is just
"Errors". The CLI's generic handler printed that word and recorded the
generic slicing error text, so a headless caller had nothing to act on.

Let Print render the per-object messages with each object's name, and have
the CLI catch SlicingErrors ahead of the generic handler, print that text
and record it as the result's error string. The exit code is unchanged. A
unit test lifts a cube off the bed and checks the message names the object.
2026-09-25 08:37:28 +08:00
Kris Austin 87a5d20d4c fix(gtk): crash at startup when opening a project with Home as the start page (#15876)
Since #15811 the settings page is built when its tab is shown, so on a
Home start that opens a project the Quality page is built on screen. Its
flow-compensation-model field is a multiline text view that GTK maps as
it is created and that is hidden, because compensation is off, before
GTK first allocates it. The loading dialog's wxWindowDisabler then
desensitizes the frame, and GTK crashes in
gtk_text_layout_cursors_changed() on that text view.

On GTK the page view is now hidden while a page is built, so a control
that starts hidden is never realized and GTK realizes it when it is
shown. The deferred build is unchanged.
2026-09-24 17:37:46 -03:00
Kris Austin 0db1dc6480 build: keep header dependencies through a compiler cache hit on clang-cl (#15875)
For clang-cl, CMake sets the depfile flags to the gcc-style -MD, -MT and -MF,
passed through as -clang: arguments. ccache does not parse those, so a cache
hit writes only the object. Ninja has no depfile to read, so it records zero
header dependencies for that object and does not rebuild it after a header
edit. The stale object is still linked into the library and the DLL. sccache
0.15.0 reproduces the depfile on a hit and is unaffected.

Use /showIncludes instead. CMake already does that for MSVC, and ccache
reproduces it on a hit. A make-rules override sets the flags, because CMake
includes the override after Platform/Windows-Clang.cmake. It is forwarded to
each dependency because every one configures as its own CMake project, and it
is only set when the file exists, because scripts/flatpak/make_deps_tar.sh
packs deps/ alone.

In a build with a warm cache, 678 of 790 objects had no recorded headers.
Object code does not change. One GUI translation unit compiled both ways is
byte-identical apart from the COFF timestamp.
2026-09-24 14:06:24 -03:00
Kris Austin 42009cf385 fix: Linux Flatpak crash rendering plate thumbnails while slicing or saving (#15873) 2026-09-24 13:41:56 -03:00
Kris Austin 9859d788d4 fix: installed vendor profiles only update when OTA is enabled (#15831)
* preset updater: refresh installed vendors from resources regardless of enable_ota

Since c4fea8ad24 the resources check in check_installed_vendor_profiles()
sat behind enabled_config_update, which now follows enable_ota, a hidden
flag that defaults to off. The hotfix a93c6ea67b then made that gate skip
installed vendors entirely, so a new build's newer vendor profiles were
never installed over an existing vendor unless OTA had been turned on.
Before the gating the update URL always had a default, so the comparison
effectively always ran.

The resources shipped with a build are not an over-the-air update. Judge
installed vendors against them, and drop the ones no longer enabled,
regardless of the flag; enable_ota keeps gating the online sync.

* preset updater: stop reinstalling the filament library on every launch

check_installed_vendor_profiles() put OrcaFilamentLibrary on the install
list unconditionally, so every launch recopied the whole vendor from
resources and, in a build that ships the profile JSONs rather than a
preset cache, then re-parsed and re-cached it: about 0.3 s of a dev
build's startup, and a 3 MB copy in a release build, for a vendor that
had not changed.

The library was special-cased because it is never in the enabled-vendor
list. Treat it like the default bundle instead: always wanted, and
reinstalled only when the resources carry a newer version.
2026-09-24 09:05:41 -03:00
2632 changed files with 265140 additions and 199627 deletions
+3
View File
@@ -70,6 +70,9 @@ if (POLICY CMP0092)
cmake_policy(SET CMP0092 NEW)
endif ()
# project() reads this, so set it first.
set(CMAKE_USER_MAKE_RULES_OVERRIDE "${CMAKE_CURRENT_LIST_DIR}/cmake/modules/ClangClShowIncludes.cmake")
project(OrcaSlicer)
# Backward compatibility for old CMake versions
+10
View File
@@ -0,0 +1,10 @@
# ccache does not parse the -clang: arguments CMake uses for clang-cl's gcc-style
# depfile, so a cache hit writes the object and no depfile, and Ninja then records
# no headers for that object. ccache reproduces /showIncludes output on a hit.
foreach (_lang C CXX)
if (CMAKE_${_lang}_COMPILER_ID STREQUAL "Clang" AND
CMAKE_${_lang}_COMPILER_FRONTEND_VARIANT STREQUAL "MSVC")
set(CMAKE_DEPFILE_FLAGS_${_lang} "/showIncludes")
set(CMAKE_${_lang}_DEPFILE_FORMAT msvc)
endif ()
endforeach ()
+10
View File
@@ -38,6 +38,14 @@ if(POLICY CMP0135) # DOWNLOAD_EXTRACT_TIMESTAMP
cmake_policy(SET CMP0135 NEW)
endif()
# project() reads this, so set it first. scripts/flatpak/make_deps_tar.sh packs deps/
# without cmake/, so the file is missing in a Flatpak build.
set(_rules_override "${CMAKE_CURRENT_LIST_DIR}/../cmake/modules/ClangClShowIncludes.cmake")
if (EXISTS "${_rules_override}")
set(CMAKE_USER_MAKE_RULES_OVERRIDE "${_rules_override}")
endif ()
unset(_rules_override)
project(OrcaSlicer-deps)
# Backward compatibility for old CMake versions
@@ -220,6 +228,7 @@ if (NOT IS_CROSS_COMPILE OR NOT APPLE)
-DCMAKE_CXX_COMPILER:STRING=${CMAKE_CXX_COMPILER}
-DCMAKE_C_COMPILER_LAUNCHER:STRING=${CMAKE_C_COMPILER_LAUNCHER}
-DCMAKE_CXX_COMPILER_LAUNCHER:STRING=${CMAKE_CXX_COMPILER_LAUNCHER}
-DCMAKE_USER_MAKE_RULES_OVERRIDE:STRING=${CMAKE_USER_MAKE_RULES_OVERRIDE}
-DCMAKE_TOOLCHAIN_FILE:STRING=${CMAKE_TOOLCHAIN_FILE}
-DCMAKE_EXE_LINKER_FLAGS:STRING=${CMAKE_EXE_LINKER_FLAGS}
-DCMAKE_SHARED_LINKER_FLAGS:STRING=${CMAKE_SHARED_LINKER_FLAGS}
@@ -267,6 +276,7 @@ else()
-DCMAKE_IGNORE_PREFIX_PATH:STRING=${CMAKE_IGNORE_PREFIX_PATH}
-DCMAKE_C_COMPILER_LAUNCHER:STRING=${CMAKE_C_COMPILER_LAUNCHER}
-DCMAKE_CXX_COMPILER_LAUNCHER:STRING=${CMAKE_CXX_COMPILER_LAUNCHER}
-DCMAKE_USER_MAKE_RULES_OVERRIDE:STRING=${CMAKE_USER_MAKE_RULES_OVERRIDE}
-DBUILD_SHARED_LIBS:BOOL=OFF
${_cmake_osx_arch}
"${_configs_line}"
+13 -17
View File
@@ -76,10 +76,9 @@ and the count of errors the original parse hit.
Each entry is one preset **in source form**: what its JSON sub-file states and nothing
that resolving it derives — the preset's own config diff, the name of the preset it
inherits, the names of the presets it includes, and the parse metadata (name, sub-path,
description, instantiation, setting and filament ids, renames). Non-instantiated base
presets are stored too; the children that inherit from or include them cannot resolve
without them.
inherits, and the parse metadata (name, sub-path, description, instantiation, setting
and filament ids, renames). Non-instantiated base presets are stored too; the children
that inherit from them cannot resolve without them.
**The payload names its own keys.** The dictionary holds the distinct `opt_key`s the
file uses, the `ConfigOptionType` each was written as, and the distinct enum *value
@@ -162,9 +161,9 @@ cache nothing can invalidate is worse than no cache.
Vendors load in a fixed order, because filament inheritance crosses exactly one
boundary: any vendor's filament may inherit from the shared Orca filament library,
and nothing else reaches across vendors — an `include` is always vendor-local. The
library therefore goes first, alone; every other vendor follows in parallel, resolving
against it; and the results are merged in a stable order:
and nothing else reaches across vendors. The library therefore goes first, alone;
every other vendor follows in parallel, resolving against it; and the results are
merged in a stable order:
```mermaid
flowchart LR
@@ -212,16 +211,13 @@ and its cache was never written back.
Serving from a cache is not a memory-image restore. The entries are deserialized and
then installed one by one — inheritance resolved against the presets installed before
them and the currently loaded filament library, includes layered in, configs flattened
onto the collection defaults, validated and registered — by the same function the JSON
path calls straight after parsing a sub-file. An `include` layers what the included
base states, between the parent and the preset's own keys: the base's diff against the
default, taken when the base itself was installed and before the per-variant padding
`inherits` sees, so only what a template sets reaches the presets including it. The two
paths share everything below the parse, which is what makes a cache-loaded bundle
indistinguishable from a JSON-loaded one by construction rather than by test coverage.
Installation also rebuilds each preset's file path from the local data directory, so a
shipped cache never carries the generating machine's paths.
them and the currently loaded filament library, configs flattened onto the collection
defaults, validated and registered — by the same function the JSON path calls straight
after parsing a sub-file. The two paths share everything below the parse, which is what
makes a cache-loaded bundle indistinguishable from a JSON-loaded one by construction
rather than by test coverage. Installation also rebuilds each preset's file path from
the local data directory, so a shipped cache never carries the generating machine's
paths.
App upgrades work because a cache normally survives one. Only a deliberate
`CACHE_VERSION` bump makes an installed cache unreadable, and that is handled at
+7474 -8806
View File
File diff suppressed because it is too large Load Diff
Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 24 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: 30 KiB

After

Width:  |  Height:  |  Size: 18 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,46 +1,43 @@
{
"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"
]
}
"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"
]
}
@@ -1,113 +1,210 @@
{
"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"
]
}
"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"
]
}
@@ -1,141 +1,204 @@
{
"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"
]
"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"
]
}
@@ -1,127 +1,204 @@
{
"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"
]
}
"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"
]
}
@@ -1,141 +1,204 @@
{
"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"
]
"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"
]
}
@@ -1,83 +1,134 @@
{
"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"
]
}
"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"
]
}
@@ -1,109 +1,138 @@
{
"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"
]
}
"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"
]
}
@@ -1,99 +1,134 @@
{
"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"
]
}
"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"
]
}
@@ -1,109 +1,134 @@
{
"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"
]
}
"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"
]
}
@@ -1,53 +1,134 @@
{
"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"
]
}
"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"
]
}
@@ -1,69 +1,134 @@
{
"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"
]
"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"
]
}
@@ -1,69 +1,134 @@
{
"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"
]
}
"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"
]
}
@@ -1,69 +1,134 @@
{
"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"
]
"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"
]
}
@@ -1,104 +1,143 @@
{
"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"
]
}
"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"
]
}
@@ -1,125 +1,140 @@
{
"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"
]
"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"
]
}
@@ -1,113 +1,140 @@
{
"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"
]
}
"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"
]
}
@@ -1,125 +1,140 @@
{
"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"
]
"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"
]
}
@@ -1,72 +0,0 @@
{
"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"
]
}
@@ -1,72 +0,0 @@
{
"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,93 +1,174 @@
{
"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"
]
}
"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"
]
}
@@ -1,105 +1,174 @@
{
"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"
]
"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"
]
}
@@ -1,93 +1,177 @@
{
"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"
]
}
"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"
]
}
@@ -1,108 +1,174 @@
{
"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"
]
"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"
]
}
@@ -1,58 +1,127 @@
{
"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"
]
}
"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"
]
}
@@ -1,64 +0,0 @@
{
"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,58 +1,130 @@
{
"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"
]
}
"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"
]
}
@@ -1,74 +1,130 @@
{
"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"
]
}
"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"
]
}
@@ -1,56 +1,125 @@
{
"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"
]
}
"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"
]
}
@@ -1,56 +1,128 @@
{
"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"
]
}
"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"
]
}
@@ -1,61 +1,126 @@
{
"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"
]
}
"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"
]
}
@@ -1,134 +1,299 @@
{
"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"
]
}
"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"
]
}
@@ -1,163 +1,299 @@
{
"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"
]
"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"
]
}
@@ -1,134 +1,299 @@
{
"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"
]
}
"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"
]
}
@@ -1,160 +1,299 @@
{
"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"
]
"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"
]
}
@@ -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": [
"15.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": [
"24.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,86 +1,174 @@
{
"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"
]
}
"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"
]
}
@@ -1,87 +1,175 @@
{
"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"
]
}
"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"
]
}
@@ -1,61 +1,130 @@
{
"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"
]
}
"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"
]
}
@@ -1,49 +1,130 @@
{
"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"
]
}
"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"
]
}
@@ -1,71 +1,130 @@
{
"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"
]
}
"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"
]
}
@@ -1,52 +1,121 @@
{
"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"
]
}
"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"
]
}
@@ -1,70 +1,170 @@
{
"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"
]
}
"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"
]
}
@@ -1,61 +1,130 @@
{
"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"
]
}
"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"
]
}
@@ -1,103 +1,266 @@
{
"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"
]
}
"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"
]
}
@@ -1,104 +1,267 @@
{
"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"
]
}
"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"
]
}
@@ -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": [
"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"
]
}
"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"
]
}
@@ -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,104 +1,201 @@
{
"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"
]
}
"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"
]
}
@@ -1,135 +1,198 @@
{
"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"
]
"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"
]
}
@@ -1,121 +1,198 @@
{
"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"
]
}
"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"
]
}
@@ -1,135 +1,198 @@
{
"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"
]
"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"
]
}
@@ -1,77 +1,128 @@
{
"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"
]
}
"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"
]
}
@@ -1,103 +1,149 @@
{
"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"
]
}
"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"
]
}
@@ -1,103 +1,128 @@
{
"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"
]
}
"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"
]
}
@@ -1,97 +1,132 @@
{
"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"
]
}
"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"
]
}
@@ -1,47 +1,128 @@
{
"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"
]
}
"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"
]
}
@@ -1,84 +1,149 @@
{
"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"
]
"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"
]
}
@@ -1,63 +1,128 @@
{
"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"
]
"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"
]
}
@@ -1,63 +1,128 @@
{
"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"
]
}
"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"
]
}
@@ -1,95 +1,134 @@
{
"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"
]
}
"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"
]
}
@@ -1,119 +1,134 @@
{
"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"
]
"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"
]
}
@@ -1,107 +1,134 @@
{
"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"
]
}
"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"
]
}
@@ -1,119 +1,134 @@
{
"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"
]
"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"
]
}
@@ -1,101 +1,192 @@
{
"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"
]
}
"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"
]
}
@@ -1,102 +1,186 @@
{
"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"
]
"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"
]
}
@@ -1,115 +1,189 @@
{
"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"
]
"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"
]
}
@@ -1,91 +1,186 @@
{
"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"
]
}
"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"
]
}
@@ -1,50 +1,119 @@
{
"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"
]
}
"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"
]
}
@@ -1,60 +1,125 @@
{
"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"
]
}
"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"
]
}
@@ -1,52 +1,121 @@
{
"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"
]
}
"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"
]
}
@@ -1,65 +1,126 @@
{
"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"
]
}
"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"
]
}
@@ -1,66 +1,127 @@
{
"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"
]
}
"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"
]
}
@@ -1,50 +1,119 @@
{
"type": "filament",
"name": "Bambu ASA @BBL X1E 0.2 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_06",
"instantiation": "true",
"filament_long_retractions_when_cut": [
"1",
"1"
],
"filament_max_volumetric_speed": [
"2",
"2"
],
"filament_retraction_distances_when_cut": [
"18",
"18"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"include": [
"fdm_filament_template_direct_dual"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"slow_down_min_speed": [
"20",
"20"
],
"compatible_printers": [
"Bambu Lab X1E 0.2 nozzle"
]
}
"type": "filament",
"name": "Bambu ASA @BBL X1E 0.2 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_06",
"instantiation": "true",
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_flush_temp": [
"0",
"0"
],
"filament_flush_volumetric_speed": [
"0",
"0"
],
"filament_long_retractions_when_cut": [
"1",
"1"
],
"filament_max_volumetric_speed": [
"2",
"2"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil",
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"18",
"18"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
],
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_adaptive_volumetric_speed": [
"0",
"0"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"volumetric_speed_coefficients": [
"0 0 0 0 0 0",
"0 0 0 0 0 0"
],
"compatible_printers": [
"Bambu Lab X1E 0.2 nozzle"
]
}
@@ -1,50 +1,119 @@
{
"type": "filament",
"name": "Bambu ASA @BBL X1E 0.4 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_07",
"instantiation": "true",
"filament_long_retractions_when_cut": [
"1",
"1"
],
"filament_max_volumetric_speed": [
"18",
"18"
],
"filament_retraction_distances_when_cut": [
"18",
"18"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"include": [
"fdm_filament_template_direct_dual"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"slow_down_min_speed": [
"20",
"20"
],
"compatible_printers": [
"Bambu Lab X1E 0.4 nozzle"
]
}
"type": "filament",
"name": "Bambu ASA @BBL X1E 0.4 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_07",
"instantiation": "true",
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_flush_temp": [
"0",
"0"
],
"filament_flush_volumetric_speed": [
"0",
"0"
],
"filament_long_retractions_when_cut": [
"1",
"1"
],
"filament_max_volumetric_speed": [
"18",
"18"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil",
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"18",
"18"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
],
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_adaptive_volumetric_speed": [
"0",
"0"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"volumetric_speed_coefficients": [
"0 0 0 0 0 0",
"0 0 0 0 0 0"
],
"compatible_printers": [
"Bambu Lab X1E 0.4 nozzle"
]
}
@@ -1,54 +1,123 @@
{
"type": "filament",
"name": "Bambu ASA @BBL X1E",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_05",
"instantiation": "true",
"fan_min_speed": [
"25"
],
"filament_long_retractions_when_cut": [
"1",
"1"
],
"filament_max_volumetric_speed": [
"18",
"18"
],
"filament_retraction_distances_when_cut": [
"18",
"18"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"include": [
"fdm_filament_template_direct_dual"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"slow_down_min_speed": [
"20",
"20"
],
"compatible_printers": [
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle"
]
}
"type": "filament",
"name": "Bambu ASA @BBL X1E",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_05",
"instantiation": "true",
"fan_min_speed": [
"25"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_flush_temp": [
"0",
"0"
],
"filament_flush_volumetric_speed": [
"0",
"0"
],
"filament_long_retractions_when_cut": [
"1",
"1"
],
"filament_max_volumetric_speed": [
"18",
"18"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil",
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"18",
"18"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow"
],
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_adaptive_volumetric_speed": [
"0",
"0"
],
"long_retractions_when_ec": [
"0",
"0"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"volumetric_speed_coefficients": [
"0 0 0 0 0 0",
"0 0 0 0 0 0"
],
"compatible_printers": [
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle"
]
}
@@ -1,128 +1,293 @@
{
"type": "filament",
"name": "Bambu ASA @BBL X2D 0.2 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_21",
"instantiation": "true",
"chamber_temperatures": [
"65"
],
"counter_coef_2": [
"0.0094"
],
"counter_coef_3": [
"-0.0092"
],
"counter_limit_max": [
"0.2258"
],
"counter_limit_min": [
"-0.0092"
],
"filament_cooling_before_tower": [
"10",
"10",
"10",
"10"
],
"filament_extruder_compatibility": [
"24"
],
"filament_flow_ratio": [
"0.95",
"0.95",
"0.95",
"0.95"
],
"filament_flush_volumetric_speed": [
"3",
"3",
"3",
"3"
],
"filament_max_volumetric_speed": [
"2",
"2",
"2",
"2"
],
"filament_ramming_travel_time": [
"0",
"0",
"0",
"0"
],
"filament_retraction_distances_when_cut": [
"10",
"10",
"10",
"10"
],
"filament_tower_interface_print_temp": [
"270"
],
"filament_wipe": [
"1",
"nil",
"1",
"nil"
],
"filament_wipe_distance": [
"1",
"nil",
"1",
"nil"
],
"filament_z_hop_types": [
"Spiral Lift",
"nil",
"Spiral Lift",
"nil"
],
"hole_coef_2": [
"0.0013"
],
"hole_coef_3": [
"0.1261"
],
"hole_limit_max": [
"0.1586"
],
"hole_limit_min": [
"0.1261"
],
"include": [
"fdm_filament_template_direct_bowden"
],
"nozzle_temperature": [
"270",
"270",
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270",
"270",
"270"
],
"retraction_distances_when_ec": [
"3",
"3",
"4",
"4"
],
"slow_down_min_speed": [
"20",
"20",
"20",
"20"
],
"compatible_printers": [
"Bambu Lab X2D 0.2 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n"
]
}
"type": "filament",
"name": "Bambu ASA @BBL X2D 0.2 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_21",
"instantiation": "true",
"filament_adaptive_volumetric_speed": [
"0",
"0",
"0",
"0"
],
"filament_cooling_before_tower": [
"10",
"10",
"10",
"10"
],
"filament_deretraction_speed": [
"nil",
"nil",
"nil",
"nil"
],
"filament_enable_overhang_speed": [
"1",
"1",
"1",
"1"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow",
"Bowden Standard",
"Bowden High Flow"
],
"filament_flush_temp": [
"0",
"0",
"0",
"0"
],
"filament_flush_volumetric_speed": [
"3",
"3",
"3",
"3"
],
"filament_long_retractions_when_cut": [
"nil",
"nil",
"nil",
"nil"
],
"filament_overhang_1_4_speed": [
"0",
"0",
"0",
"0"
],
"filament_overhang_2_4_speed": [
"50",
"50",
"50",
"50"
],
"filament_overhang_3_4_speed": [
"30",
"30",
"30",
"30"
],
"filament_overhang_4_4_speed": [
"10",
"10",
"10",
"10"
],
"filament_overhang_totally_speed": [
"10",
"10",
"10",
"10"
],
"filament_bridge_speed": [
"25",
"25",
"25",
"25"
],
"filament_pre_cooling_temperature": [
"0",
"0",
"0",
"0"
],
"filament_pre_cooling_temperature_nc": [
"0",
"0",
"0",
"0"
],
"filament_ramming_travel_time_nc": [
"0",
"0",
"0",
"0"
],
"filament_retract_length_nc": [
"14",
"14",
"14",
"14"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1",
"-1",
"-1"
],
"filament_ramming_volumetric_speed_nc": [
"-1",
"-1",
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil",
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil",
"nil",
"nil",
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil",
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"10",
"10",
"10",
"10"
],
"filament_retraction_length": [
"nil",
"nil",
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil",
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil",
"nil",
"nil"
],
"filament_wipe": [
"1",
"nil",
"1",
"nil"
],
"filament_wipe_distance": [
"1",
"nil",
"1",
"nil"
],
"filament_z_hop": [
"nil",
"nil",
"nil",
"nil"
],
"filament_z_hop_types": [
"Spiral Lift",
"nil",
"Spiral Lift",
"nil"
],
"long_retractions_when_ec": [
"1",
"1",
"1",
"1"
],
"override_process_overhang_speed": [
"0",
"0",
"0",
"0"
],
"retraction_distances_when_ec": [
"3",
"3",
"4",
"4"
],
"slow_down_min_speed": [
"20",
"20",
"20",
"20"
],
"volumetric_speed_coefficients": [
"0 0 0 0 0 0",
"0 0 0 0 0 0",
"0 0 0 0 0 0",
"0 0 0 0 0 0"
],
"chamber_temperatures": [
"65"
],
"counter_coef_2": [
"0.0094"
],
"counter_coef_3": [
"-0.0092"
],
"counter_limit_max": [
"0.2258"
],
"counter_limit_min": [
"-0.0092"
],
"filament_extruder_compatibility": [
"24"
],
"filament_flow_ratio": [
"0.95",
"0.95",
"0.95",
"0.95"
],
"filament_max_volumetric_speed": [
"2",
"2",
"2",
"2"
],
"filament_ramming_travel_time": [
"0",
"0",
"0",
"0"
],
"filament_tower_interface_print_temp": [
"270"
],
"hole_coef_2": [
"0.0013"
],
"hole_coef_3": [
"0.1261"
],
"hole_limit_max": [
"0.1586"
],
"hole_limit_min": [
"0.1261"
],
"nozzle_temperature": [
"270",
"270",
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270",
"270",
"270"
],
"compatible_printers": [
"Bambu Lab X2D 0.2 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n"
]
}
@@ -1,157 +1,293 @@
{
"type": "filament",
"name": "Bambu ASA @BBL X2D 0.4 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_22",
"instantiation": "true",
"chamber_temperatures": [
"65"
],
"counter_coef_2": [
"0.0094"
],
"counter_coef_3": [
"-0.0092"
],
"counter_limit_max": [
"0.2258"
],
"counter_limit_min": [
"-0.0092"
],
"filament_cooling_before_tower": [
"10",
"10",
"10",
"10",
"10",
"10"
],
"filament_extruder_compatibility": [
"24"
],
"filament_flow_ratio": [
"0.95",
"0.95",
"0.95",
"0.95",
"0.95",
"0.95"
],
"filament_max_volumetric_speed": [
"18",
"25",
"18",
"18",
"20",
"18"
],
"filament_ramming_travel_time": [
"0",
"0",
"0",
"0",
"0",
"0"
],
"filament_retraction_distances_when_cut": [
"10",
"10",
"10",
"10",
"10",
"10"
],
"filament_retraction_length": [
"0.4",
"0.4",
"0.4",
"nil",
"nil",
"nil"
],
"filament_tower_interface_print_temp": [
"270"
],
"filament_wipe": [
"1",
"1",
"1",
"1",
"1",
"1"
],
"filament_wipe_distance": [
"1",
"1",
"1",
"1",
"1",
"1"
],
"filament_z_hop_types": [
"Spiral Lift",
"Spiral Lift",
"Spiral Lift",
"Spiral Lift",
"Spiral Lift",
"Spiral Lift"
],
"hole_coef_2": [
"0.0013"
],
"hole_coef_3": [
"0.1261"
],
"hole_limit_max": [
"0.1586"
],
"hole_limit_min": [
"0.1261"
],
"include": [
"fdm_filament_template_direct_bowden_e3d"
],
"nozzle_temperature": [
"270",
"270",
"270",
"270",
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270",
"270",
"270",
"270",
"270"
],
"retraction_distances_when_ec": [
"3",
"3",
"3",
"4",
"4",
"4"
],
"slow_down_min_speed": [
"20",
"20",
"20",
"20",
"20",
"20"
],
"temperature_vitrification": [
"100"
],
"compatible_printers": [
"Bambu Lab X2D 0.4 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n"
]
"type": "filament",
"name": "Bambu ASA @BBL X2D 0.4 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_22",
"instantiation": "true",
"filament_adaptive_volumetric_speed": [
"0",
"0",
"0",
"0"
],
"filament_cooling_before_tower": [
"10",
"10",
"10",
"10"
],
"filament_deretraction_speed": [
"nil",
"nil",
"nil",
"nil"
],
"filament_enable_overhang_speed": [
"1",
"1",
"1",
"1"
],
"filament_extruder_variant": [
"Direct Drive Standard",
"Direct Drive High Flow",
"Bowden Standard",
"Bowden High Flow"
],
"filament_flush_temp": [
"0",
"0",
"0",
"0"
],
"filament_flush_volumetric_speed": [
"0",
"0",
"0",
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil",
"nil",
"nil"
],
"filament_overhang_1_4_speed": [
"0",
"0",
"0",
"0"
],
"filament_overhang_2_4_speed": [
"50",
"50",
"50",
"50"
],
"filament_overhang_3_4_speed": [
"30",
"30",
"30",
"30"
],
"filament_overhang_4_4_speed": [
"10",
"10",
"10",
"10"
],
"filament_overhang_totally_speed": [
"10",
"10",
"10",
"10"
],
"filament_bridge_speed": [
"25",
"25",
"25",
"25"
],
"filament_pre_cooling_temperature": [
"0",
"0",
"0",
"0"
],
"filament_pre_cooling_temperature_nc": [
"0",
"0",
"0",
"0"
],
"filament_ramming_travel_time_nc": [
"0",
"0",
"0",
"0"
],
"filament_retract_length_nc": [
"14",
"14",
"14",
"14"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1",
"-1",
"-1"
],
"filament_ramming_volumetric_speed_nc": [
"-1",
"-1",
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil",
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil",
"nil",
"nil",
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil",
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"10",
"10",
"10",
"10"
],
"filament_retraction_length": [
"0.4",
"0.4",
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil",
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil",
"nil",
"nil"
],
"filament_wipe": [
"1",
"1",
"1",
"1"
],
"filament_wipe_distance": [
"1",
"1",
"1",
"1"
],
"filament_z_hop": [
"nil",
"nil",
"nil",
"nil"
],
"filament_z_hop_types": [
"Spiral Lift",
"Spiral Lift",
"Spiral Lift",
"Spiral Lift"
],
"long_retractions_when_ec": [
"1",
"1",
"1",
"1"
],
"override_process_overhang_speed": [
"0",
"0",
"0",
"0"
],
"retraction_distances_when_ec": [
"3",
"3",
"4",
"4"
],
"slow_down_min_speed": [
"20",
"20",
"20",
"20"
],
"volumetric_speed_coefficients": [
"0 0 0 0 0 0",
"0 0 0 0 0 0",
"0 0 0 0 0 0",
"0 0 0 0 0 0"
],
"chamber_temperatures": [
"65"
],
"counter_coef_2": [
"0.0094"
],
"counter_coef_3": [
"-0.0092"
],
"counter_limit_max": [
"0.2258"
],
"counter_limit_min": [
"-0.0092"
],
"filament_extruder_compatibility": [
"24"
],
"filament_flow_ratio": [
"0.95",
"0.95",
"0.95",
"0.95"
],
"filament_max_volumetric_speed": [
"18",
"25",
"18",
"20"
],
"filament_ramming_travel_time": [
"0",
"0",
"0",
"0"
],
"filament_tower_interface_print_temp": [
"270"
],
"hole_coef_2": [
"0.0013"
],
"hole_coef_3": [
"0.1261"
],
"hole_limit_max": [
"0.1586"
],
"hole_limit_min": [
"0.1261"
],
"nozzle_temperature": [
"270",
"270",
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270",
"270",
"270"
],
"compatible_printers": [
"Bambu Lab X2D 0.4 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n"
]
}
@@ -1,149 +0,0 @@
{
"type": "filament",
"name": "Bambu ASA @BBL X2D 0.8 nozzle",
"inherits": "Bambu ASA @base",
"from": "system",
"setting_id": "GFSB01_50",
"instantiation": "true",
"chamber_temperatures": [
"65"
],
"counter_coef_2": [
"0.0094"
],
"counter_coef_3": [
"-0.0092"
],
"counter_limit_max": [
"0.2258"
],
"counter_limit_min": [
"-0.0092"
],
"fan_min_speed": [
"25"
],
"filament_cooling_before_tower": [
"10",
"10",
"10",
"10"
],
"filament_dev_ams_drying_temperature": [
"65",
"80",
"65",
"80"
],
"filament_dev_ams_drying_time": [
"12",
"8.0",
"12",
"8.0"
],
"filament_extruder_compatibility": [
"24"
],
"filament_flow_ratio": [
"0.95",
"0.95",
"0.95",
"0.95"
],
"filament_flush_temp_fast": [
"0",
"0",
"0",
"0"
],
"filament_max_volumetric_speed": [
"18",
"35",
"18",
"18"
],
"filament_ramming_travel_time": [
"0",
"0",
"0",
"0"
],
"filament_retraction_distances_when_cut": [
"10",
"10",
"10",
"10"
],
"filament_retraction_length": [
"0.4",
"nil",
"nil",
"nil"
],
"filament_tower_interface_print_temp": [
"270"
],
"filament_wipe": [
"1",
"nil",
"1",
"nil"
],
"filament_wipe_distance": [
"1",
"nil",
"1",
"nil"
],
"filament_z_hop_types": [
"Spiral Lift",
"nil",
"Spiral Lift",
"nil"
],
"hole_coef_2": [
"0.0013"
],
"hole_coef_3": [
"0.1261"
],
"hole_limit_max": [
"0.1586"
],
"hole_limit_min": [
"0.1261"
],
"include": [
"fdm_filament_template_direct_bowden"
],
"nozzle_temperature": [
"270",
"270",
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270",
"270",
"270"
],
"retraction_distances_when_ec": [
"3",
"3",
"4",
"4"
],
"slow_down_min_speed": [
"20",
"20",
"20",
"20"
],
"compatible_printers": [
"Bambu Lab X2D 0.8 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n"
]
}

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