Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0e2fbf781d | ||
|
|
b535a81064 | ||
|
|
434ff3011f | ||
|
|
2b602943a5 | ||
|
|
d51ad889fd | ||
|
|
edc2f8bf90 | ||
|
|
037b859447 | ||
|
|
02746cd0f5 | ||
|
|
66b300987b | ||
|
|
9bae19fcb3 | ||
|
|
fcd8131998 | ||
|
|
a8f1061a02 | ||
|
|
b46916a8be | ||
|
|
bf024ed34e | ||
|
|
0211277976 | ||
|
|
7758332406 | ||
|
|
cc883e458d |
@@ -0,0 +1,220 @@
|
||||
# Deferred Page Construction: High Level Design
|
||||
|
||||
## Why it exists
|
||||
|
||||
The main window is a notebook of tabs. When the first frame appears, one tab is on
|
||||
screen and the others are not; some of them are opened later in the session, some
|
||||
never, and some only exist for certain printers. Building a tab before the first frame
|
||||
adds its cost to every startup, whether or not the tab is used.
|
||||
|
||||
This subsystem builds a tab's panel the first time the tab is shown. It also builds the
|
||||
remaining tabs while the user is idle after startup, in units of tens of milliseconds,
|
||||
so a click that lands in the middle of one waits for that unit and no longer. Startup
|
||||
pays only for what the first frame shows, and the other tabs are usually built before
|
||||
anyone opens them.
|
||||
|
||||
## The parts
|
||||
|
||||
`src/slic3r/GUI/Lazy.hpp`, `LazyPage.hpp`, `StagedBuild.hpp` and `IdleScheduler.hpp/.cpp`
|
||||
(with its wx-free `PrebuildQueue.hpp`) are independent. A holder can hold anything a
|
||||
factory makes, a page is a holder with a placeholder widget, a staged object can live
|
||||
outside a holder, and the scheduler knows none of them; it runs tasks, which `MainFrame`
|
||||
makes from the holders.
|
||||
|
||||
### Lazy<T>: the holder
|
||||
|
||||
Holds an object that a factory makes on first use, under a name for the log and a place
|
||||
in the idle queue, both given by the owner. The header has no wx dependency; the busy
|
||||
cursor for an on-demand build lives in `Lazy.cpp` and is skipped when there is no app,
|
||||
so the holder is unit-tested.
|
||||
|
||||
- `get()` is null until the object is completely built; `built()` says the same.
|
||||
- `ensure()` builds whatever is left now, under a busy cursor, and returns the object, or
|
||||
null in the two cases below. A click on an unbuilt tab or a first open of a dialog goes
|
||||
through this, and it logs the units and time it took.
|
||||
- `build_step()` runs one unit of construction and returns true while more remain. The
|
||||
first unit is the factory call, and each later unit is one `StagedBuild` step if the
|
||||
type has them.
|
||||
- `when_built(fn)` runs `fn(object)` now if it exists, otherwise once it is built.
|
||||
- `pending()` says whether the idle prebuild has work here: not built, and the factory
|
||||
has not returned null. A null factory result is logged and the holder stays unbuilt.
|
||||
- A unit that pumps the event loop cannot re-enter the holder; a nested `build_step()`
|
||||
does nothing and a nested `ensure()` returns null.
|
||||
- After a unit throws, the holder and the scheduler still run the next one.
|
||||
|
||||
The holder does not own the object; its wx parent does, as for any window. A type with
|
||||
one instance in the app derives from `LazyInstance<T>`, which points at that instance's
|
||||
holder (the holder registers itself, and a recreated `MainFrame`'s holder replaces the
|
||||
old frame's) and gives the type the static entry points the rest of the app uses,
|
||||
`T::if_built()`, `T::ensure()` and `T::when_built(fn)`. They return null, or do
|
||||
nothing, while no holder exists, so a caller needs no `mainframe` check.
|
||||
|
||||
`built()` is an atomic flag, since a job worker reads it through the statics
|
||||
(`MainFrame::get_calibration_curr_tab()`); it is set after the object is complete.
|
||||
|
||||
`LazyBase` is the holder's type-free interface (`name()`, `built()`, `pending()`,
|
||||
`build_step()`, `prebuild_order()`) and is what the scheduler side sees.
|
||||
|
||||
### LazyPage<Panel>: the placeholder
|
||||
|
||||
A `wxPanel` placed in the parent in place of the real panel, and a `Lazy<Panel>` whose
|
||||
factory makes the panel inside it (by default `new Panel(parent)`). The notebook needs a
|
||||
page object for the tab to exist and for `show_device()` to insert and remove tabs by
|
||||
pointer, and the placeholder is that object. `MainFrame` creates every page once, named
|
||||
after its `TAB_ID_*`, and keeps it for the frame's life; `show_device()` only moves
|
||||
pages in and out of the book.
|
||||
|
||||
- `Show()` is forwarded to the panel, so a panel's own `Show()` override stays its
|
||||
activation hook (refresh timers, machine sync) and `SelectPageByName()` works
|
||||
unchanged. A show builds the panel unless the frame itself is still hidden, because
|
||||
the book selects its first page as it is inserted; `MainFrame::Show()` shows the
|
||||
current page again when the frame becomes visible, which builds it.
|
||||
- `in_book()` says whether the parent notebook currently lists the page, and
|
||||
`pending()` is that and not built, so a tab `show_device()` has taken out of the book
|
||||
is not prebuilt.
|
||||
- A panel built while its page is hidden stays hidden, and a completed panel gets the
|
||||
dark-mode pass the frame ran before it existed.
|
||||
|
||||
The Compare presets dialog is a holder without a page. `MainFrame` keeps a
|
||||
`Lazy<DiffPresetDialog>` whose factory constructs the dialog and binds its events, the
|
||||
dialog derives from `LazyInstance`, and its callers use
|
||||
`DiffPresetDialog::ensure()->show()` and `DiffPresetDialog::if_built()` like a tab's
|
||||
callers do. Saving a preset refreshes the dialog only while it is shown, since `show()`
|
||||
reloads the presets.
|
||||
|
||||
### StagedBuild: construction in units
|
||||
|
||||
A mixin for a panel whose constructor is too big to be one unit. The constructor builds
|
||||
the skeleton (sizers, and the parts other code may touch) and queues the rest with
|
||||
`add_build_step()`. `build_step()` runs one step, and `add_build_steps_of(child)`
|
||||
forwards a child's steps so a nested panel is spread the same way; the parent is built
|
||||
only once the child is, including steps the child queues later. Steps run in order, on
|
||||
the main thread. A `Lazy<T>` recognises a staged type at compile time and runs its steps
|
||||
one per unit.
|
||||
|
||||
Nothing may touch what a step builds before the last step has run. In practice:
|
||||
|
||||
- nothing paints the panel before it is complete, since a panel built at idle is hidden
|
||||
with its page and one built on demand finishes inside `ensure()` before the event loop
|
||||
runs again;
|
||||
- members created in steps are initialised to null in the header, so a partially built
|
||||
panel can be destroyed;
|
||||
- timers and event handlers that use step content check `built()` first
|
||||
(`MonitorPanel::update_all()`, `CalibrationPanel::update_all()`), and a child's steps
|
||||
are queued before anything in the constructor can fire such a handler;
|
||||
- a destructor that disconnects from step content checks `built()` first;
|
||||
- a constructor or step does not take focus while the panel is off screen
|
||||
(`IsShownOnScreen()` before `SetFocus()`), since it may run while the user is typing
|
||||
elsewhere;
|
||||
- where a step's widgets must keep their place in a sizer that later steps also fill, the
|
||||
constructor adds an empty slot sizer in that position and the step fills the slot
|
||||
(`StatusBasePanel`).
|
||||
|
||||
### IdleScheduler: when to build
|
||||
|
||||
A task is any `LazyBase`: a name for the log, `pending()`, `build_step()` and
|
||||
`prebuild_order()`. `PrebuildQueue` holds the tasks by order (equal order in the order
|
||||
added) and runs a slice, the units of the first pending task until it completes, the
|
||||
budget is spent on the clock it is given, or the interrupt predicate says input arrived.
|
||||
It has no wx dependency and is unit-tested with a fake clock. A task whose work is gone
|
||||
is passed over and stays in the queue, so a tab that `show_device()` removes and later
|
||||
re-inserts is pending again.
|
||||
|
||||
`IdleScheduler` drives the queue with the real clock, the app's input timestamp and the
|
||||
Windows queue check, and logs each unit and slice. Each slice is a timer message: a
|
||||
period of 250 ms while waiting for the user to go quiet, and a one-shot of zero after a
|
||||
slice that left work, so the event loop dispatches whatever it has queued (paint,
|
||||
timers, input) before the next slice runs. Chaining slices with `CallAfter` would not do
|
||||
this: wx drains pending events fully before the next native message, on every platform.
|
||||
On GTK the one-shot is 5 ms, because a due GLib timeout runs ahead of the redraw and
|
||||
idle sources that paint and deliver posted events.
|
||||
A slice runs only once the user has been idle for the quiet time, and the timer stops
|
||||
itself once no task is pending. The tick period, quiet time and slice length are
|
||||
constants in `IdleScheduler.cpp`. A unit cannot be interrupted once started, so the
|
||||
largest unit bounds click latency on Windows; on the other platforms a click also waits
|
||||
for the rest of the slice. A unit that pumps the event loop lets the timer fire inside
|
||||
its own slice, and that tick does nothing.
|
||||
|
||||
The tasks are made by their owners. `MainFrame::prebuild_pages_when_idle()` registers
|
||||
every `LazyPage` the frame created, in or out of the book (`pending()` is false for a
|
||||
page out of the book), the Compare presets holder, and the Prepare sidebar's settings
|
||||
page from `ParamsPanel::settings_page_prebuild()`, whose first unit selects the default
|
||||
tab if none is selected yet and whose later units build one option group each.
|
||||
`show_device()` only restarts the timer. `MainFrame` owns the scheduler because it owns
|
||||
everything the tasks build, and clearing the queue with the frame is what keeps a task
|
||||
from outliving its object.
|
||||
|
||||
Idle time comes from `GUI_App::FilterEvent`, which timestamps mouse and keyboard events
|
||||
(`wxEVT_CATEGORY_USER_INPUT` minus command events, which all claim that category), and
|
||||
`GUI_App::input_idle_ms()` reports it. On Windows a slice additionally refuses to start
|
||||
when the message queue holds keyboard, button, touch or pen input. Mouse moves are
|
||||
excluded because Windows synthesises one whenever a window appears under the cursor,
|
||||
which every unit does. Other platforms use the timestamp alone.
|
||||
|
||||
Once every registered page is built the timer is stopped and the subsystem costs
|
||||
nothing.
|
||||
|
||||
## Rules
|
||||
|
||||
**What builds before the first frame.** The Prepare tab's plater, because `post_init()`
|
||||
needs its GL canvas on screen to initialise OpenGL in every startup state, and the start
|
||||
page the user configured. Home is built by the first `MainFrame::Show()`, Prepare's
|
||||
settings page by selecting the tab. `post_init()` passes through the Prepare tab for GL
|
||||
init under `Freeze()` with `MainFrame::select_prepare_for_gl_init()`, which changes the
|
||||
selection without the page-changed event, so nothing else is built for that pass.
|
||||
|
||||
**Reaching a lazy object.** A caller uses the type's own statics. `T::if_built()` may
|
||||
return null and is for telling the object something it can live without (a rescale, a
|
||||
colour change, a status update). `T::ensure()` builds the object and is for navigating
|
||||
to it or for a caller that is about to show it. A caller that tells the object something
|
||||
it would not fetch for itself on construction uses `T::when_built()`, which keeps the
|
||||
message until the object exists. A panel that pulls its state when constructed (the Home
|
||||
page requests the recent list on load, the Device tab reads the device manager on show)
|
||||
is reached with `if_built()`; one that cannot pull gets `when_built()`.
|
||||
|
||||
**Unit size.** A unit cannot be interrupted, so it should stay within the slice length on
|
||||
a fast machine. A constructor above that is staged. A single widget above it is the
|
||||
floor unless the widget itself is split.
|
||||
|
||||
**Order.** Cheapest and most likely to be opened first, given where `MainFrame` creates
|
||||
each holder. The settings page is 0 (the Prepare tab's own content), Home 10, Device 20
|
||||
(a Bambu user's usual second stop), Calibration 30, Multi-device 40, the web Device
|
||||
view 50, Project 60 (a second WebView2 instance) and the Compare presets dialog 100;
|
||||
steps of ten so a new tab takes a value between its neighbours without renumbering
|
||||
them. `MainFrame::prebuild_pages_when_idle()` registers the tasks once, from
|
||||
`post_init()`.
|
||||
|
||||
**Never prebuilt.** A holder with a negative order, for a tab that few sessions open
|
||||
and that costs more to build unasked than it saves (the Design tab), and plugin-provided
|
||||
tabs, which are Python-side and not lazy pages.
|
||||
|
||||
## Adopting it
|
||||
|
||||
A lazy tab needs:
|
||||
|
||||
1. The panel derived from `LazyInstance<Panel>`, since a tab's panel has one instance.
|
||||
2. A `LazyPage<Panel>*` member in `MainFrame`, created once in `init_tabpanel()` with
|
||||
its `TAB_ID_*` as the name, its place by the order rule (and a factory if
|
||||
`new Panel(parent)` is not enough), added to `m_lazy_pages`, and used wherever the
|
||||
tab is added to or looked up in the notebook.
|
||||
3. Every use of the panel outside `MainFrame` going through one of the panel's statics,
|
||||
chosen by the rule above. When converting an existing member, `grep` for it; the
|
||||
compiler finds the rest.
|
||||
4. A constructor that copes with the frame already existing and the user being busy
|
||||
elsewhere, since `wxGetApp().mainframe` is set, the frame may be shown, and the user
|
||||
may be typing when a lazy panel is built: no `SetFocus()` while off screen, and
|
||||
whatever the constructor did through a `MainFrame` accessor before (a mode update, a
|
||||
deferred URL) done in the constructor itself.
|
||||
|
||||
To stage a heavy constructor, inherit `StagedBuild`, keep the skeleton in the constructor,
|
||||
move the rest into `add_build_step()` lambdas in the original order, and follow the
|
||||
staged-panel rules above. Measure the units. A step that is still one big widget has to
|
||||
be split inside that widget or accepted as the floor.
|
||||
|
||||
Verification is by log. `MainFrame::prebuild_pages_when_idle` lists the queue it
|
||||
registered, `IdleScheduler::tick` reports each completed task by name at info level and
|
||||
each slice and unit at debug level, and `Lazy::ensure` reports an object a user built
|
||||
on demand with the units and time it took. A run from the configured start
|
||||
page shows every registered page complete, in order, with no unit longer than intended.
|
||||
A click on a tab mid-prebuild shows the finished panel with an `ensure` line for what was
|
||||
left, and the slices resume for the remaining tasks once the user is idle again.
|
||||
@@ -76,9 +76,10 @@ 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, 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.
|
||||
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.
|
||||
|
||||
**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
|
||||
@@ -161,9 +162,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. 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 — 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:
|
||||
|
||||
```mermaid
|
||||
flowchart LR
|
||||
@@ -211,13 +212,16 @@ 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, 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.
|
||||
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.
|
||||
|
||||
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
|
||||
|
||||
|
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 8.8 KiB |
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 30 KiB |
@@ -1,41 +1,41 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL A1 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_08",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"20"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.2 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL A1 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_08",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"20"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,43 +1,46 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL A1",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_07",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"20"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL A1",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_07",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"20"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,210 +1,113 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2C 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_23",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2C 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_23",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,204 +1,141 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2C 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_34",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2C 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_34",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"30",
|
||||
"25"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,204 +1,127 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2C 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_35",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2C 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_35",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,204 +1,141 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2C",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_22",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.6"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2C",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_22",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98",
|
||||
"0.98",
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"30",
|
||||
"20"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.6",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,134 +1,83 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2D 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_12",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2D 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_12",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,138 +1,109 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2D 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_29",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_extruder_id": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2D 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_29",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35",
|
||||
"25"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,134 +1,99 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2D 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_13",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2D 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_13",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,134 +1,109 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2D",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_11",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2D",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_11",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"35",
|
||||
"20"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,134 +1,53 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2DP 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_17",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2DP 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_17",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,134 +1,69 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2DP 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_31",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2DP 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_31",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,134 +1,69 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2DP 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_18",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2DP 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_18",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,134 +1,69 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2DP",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_16",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2DP",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_16",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,143 +1,104 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2S 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_25",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2S 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_25",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,140 +1,125 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2S 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_33",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2S 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_33",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35",
|
||||
"25"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,140 +1,113 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2S 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_32",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2S 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_32",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,140 +1,125 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2S",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_24",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL H2S",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_24",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"35",
|
||||
"20"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,72 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL P1S 0.4 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_38",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"40"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"25"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"40"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"0.6"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1S 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL P1S 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_39",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"40"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"25"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"40"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"0.6"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1S 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,174 +1,93 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL P2S 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_14",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL P2S 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_14",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
@@ -1,174 +1,105 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL P2S 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_36",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL P2S 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_36",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"35",
|
||||
"16"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,177 +1,93 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL P2S 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_15",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL P2S 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_15",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
@@ -1,174 +1,108 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL P2S",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_10",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"25"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL P2S",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_10",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"25",
|
||||
"16"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,127 +1,58 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1C 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_00",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.2 nozzle",
|
||||
"Bambu Lab X1 0.2 nozzle",
|
||||
"Bambu Lab P1S 0.2 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1C 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_00",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.2 nozzle",
|
||||
"Bambu Lab X1 0.2 nozzle",
|
||||
"Bambu Lab P1S 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1C 0.6 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_40",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"25"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.8"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"0.6"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,130 +1,58 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1C 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_01",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1C 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_01",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"nil"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,130 +1,74 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1C",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"16"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1C",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"40"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"25"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"40"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"0.6"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,125 +1,56 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1E 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_05",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.2 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1E 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_05",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,128 +1,56 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1E 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_06",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.8 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1E 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_06",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"nil"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,126 +1,61 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1E",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_04",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"16"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X1E",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_04",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"16"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"nil"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,299 +1,134 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X2D 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_20",
|
||||
"instantiation": "true",
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow",
|
||||
"Bowden Standard",
|
||||
"Bowden High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3",
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50",
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30",
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_bridge_speed": [
|
||||
"25",
|
||||
"25",
|
||||
"25",
|
||||
"25"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14",
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"80"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2",
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X2D 0.2 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_20",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"80"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3",
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2",
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift",
|
||||
"nil"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_bowden"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
@@ -1,299 +1,163 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X2D 0.4 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_09",
|
||||
"instantiation": "true",
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow",
|
||||
"Bowden Standard",
|
||||
"Bowden High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50",
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30",
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_bridge_speed": [
|
||||
"25",
|
||||
"25",
|
||||
"25",
|
||||
"25"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14",
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"25",
|
||||
"16",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X2D 0.4 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_09",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"25",
|
||||
"16",
|
||||
"16",
|
||||
"18",
|
||||
"16"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_bowden_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,299 +1,134 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X2D 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_30",
|
||||
"instantiation": "true",
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow",
|
||||
"Bowden Standard",
|
||||
"Bowden High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50",
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30",
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_bridge_speed": [
|
||||
"25",
|
||||
"25",
|
||||
"25",
|
||||
"25"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14",
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"35",
|
||||
"16",
|
||||
"16"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X2D 0.8 nozzle",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_30",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"35",
|
||||
"16",
|
||||
"16"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift",
|
||||
"nil"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_bowden"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
@@ -1,299 +1,160 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X2D",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_19",
|
||||
"instantiation": "true",
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow",
|
||||
"Bowden Standard",
|
||||
"Bowden High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50",
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30",
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_bridge_speed": [
|
||||
"25",
|
||||
"25",
|
||||
"25",
|
||||
"25"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14",
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"35",
|
||||
"16",
|
||||
"16"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @BBL X2D",
|
||||
"inherits": "Bambu ABS @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB00_19",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0124"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.0241"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.3341"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"0.0241"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16",
|
||||
"35",
|
||||
"16",
|
||||
"16",
|
||||
"16",
|
||||
"16"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"nil",
|
||||
"0.4",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"1",
|
||||
"nil",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"1",
|
||||
"nil",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.0008"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1319"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1119"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_bowden_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,21 +1,21 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @base",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"from": "system",
|
||||
"filament_id": "OFhuaUQB",
|
||||
"instantiation": "false",
|
||||
"description": "When printing this filament, there's a risk of warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
|
||||
"filament_cost": [
|
||||
"24.99"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"7.4"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS @base",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"from": "system",
|
||||
"filament_id": "OFhuaUQB",
|
||||
"instantiation": "false",
|
||||
"description": "When printing this filament, there's a risk of warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
|
||||
"filament_cost": [
|
||||
"15.99"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"7.4"
|
||||
]
|
||||
}
|
||||
@@ -1,19 +1,19 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL A1",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_02",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL A1",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_02",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,174 +1,86 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2C 0.4 nozzle",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_08",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2C 0.4 nozzle",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_08",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,175 +1,87 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2C",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_09",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.6 nozzle",
|
||||
"Bambu Lab H2C 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2C",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_09",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"75"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.6 nozzle",
|
||||
"Bambu Lab H2C 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,130 +1,61 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2D",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_03",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2D",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_03",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.4 nozzle",
|
||||
"Bambu Lab H2D 0.6 nozzle",
|
||||
"Bambu Lab H2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,130 +1,49 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2DP",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_05",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2DP",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_05",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.4 nozzle",
|
||||
"Bambu Lab H2D Pro 0.6 nozzle",
|
||||
"Bambu Lab H2D Pro 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,130 +1,71 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2S",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_10",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL H2S",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_10",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.4 nozzle",
|
||||
"Bambu Lab H2S 0.6 nozzle",
|
||||
"Bambu Lab H2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,121 +1,52 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL P1P",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_01",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL P1P",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_01",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,170 +1,70 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL P2S",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_04",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL P2S",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_04",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.6 nozzle",
|
||||
"Bambu Lab P2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
@@ -1,130 +1,61 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL X1C",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_00",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL X1C",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_00",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,266 +1,103 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL X2D 0.4 nozzle",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_06",
|
||||
"instantiation": "true",
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow",
|
||||
"Bowden Standard",
|
||||
"Bowden High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50",
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30",
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_bridge_speed": [
|
||||
"25",
|
||||
"25",
|
||||
"25",
|
||||
"25"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14",
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"1",
|
||||
"1",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12",
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL X2D 0.4 nozzle",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_06",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12",
|
||||
"12",
|
||||
"12",
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_bowden_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
@@ -1,267 +1,104 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL X2D",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_07",
|
||||
"instantiation": "true",
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow",
|
||||
"Bowden Standard",
|
||||
"Bowden High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50",
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30",
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_bridge_speed": [
|
||||
"25",
|
||||
"25",
|
||||
"25",
|
||||
"25"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14",
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"1",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12",
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @BBL X2D",
|
||||
"inherits": "Bambu ABS-GF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB50_07",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12",
|
||||
"12",
|
||||
"12",
|
||||
"12",
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_bowden_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260",
|
||||
"260"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
@@ -1,45 +1,45 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @base",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"from": "system",
|
||||
"filament_id": "OFknl9Iz",
|
||||
"instantiation": "false",
|
||||
"description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
|
||||
"fan_cooling_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"filament_cost": [
|
||||
"29.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.08"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_type": [
|
||||
"ABS-GF"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"5.3"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"30"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"10%"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ABS-GF @base",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"from": "system",
|
||||
"filament_id": "OFknl9Iz",
|
||||
"instantiation": "false",
|
||||
"description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
|
||||
"fan_cooling_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"30"
|
||||
],
|
||||
"filament_cost": [
|
||||
"26.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.08"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_type": [
|
||||
"ABS-GF"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"5.3"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"30"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"10%"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
]
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL A1 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_10",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.2 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL A1 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_10",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL A1 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_09",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL A1 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_09",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,21 +1,21 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL A1 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_08",
|
||||
"instantiation": "true",
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL A1 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_08",
|
||||
"instantiation": "true",
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,201 +1,104 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2C 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_24",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"85"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2C 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_24",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"85"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,198 +1,135 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2C 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_37",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.96",
|
||||
"0.96"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"85"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2C 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_37",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.96",
|
||||
"0.96",
|
||||
"0.96"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"30",
|
||||
"25"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"85"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,198 +1,121 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2C 0.8 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_38",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.96",
|
||||
"0.96"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"85"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2C 0.8 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_38",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.96",
|
||||
"0.96"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"85"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,198 +1,135 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2C",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_23",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.96",
|
||||
"0.96"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"30"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.6"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"85"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2C",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_23",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.96",
|
||||
"0.96",
|
||||
"0.96"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"30",
|
||||
"20"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.6",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_prime_volume_nc": [
|
||||
"30"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"230",
|
||||
"230",
|
||||
"230"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_change_length_nc": [
|
||||
"4"
|
||||
],
|
||||
"first_x_layer_fan_speed": [
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"filament_preheat_temperature_delta": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"85"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2C 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,128 +1,77 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2D 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_12",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2D 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_12",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,149 +1,103 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2D 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_13",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.007"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.003"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.1"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.006"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.25"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"-0.088"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.14"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2D 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_13",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"35",
|
||||
"20"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,128 +1,103 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2D 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_11",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2D 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_11",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35",
|
||||
"25"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,132 +1,97 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2D 0.8 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_33",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_extruder_id": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2D 0.8 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_33",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_extruder_id": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,128 +1,47 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2DP 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_18",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2DP 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_18",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,149 +1,84 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2DP 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_19",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.007"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.003"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.1"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.006"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.25"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"-0.088"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.14"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2DP 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_19",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.007"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"0.003"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.1"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"-0.006"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.25"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.14"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"-0.088"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,128 +1,63 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2DP 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_17",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2DP 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_17",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,128 +1,63 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2DP 0.8 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_34",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2DP 0.8 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_34",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2D Pro 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,134 +1,95 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2S 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_27",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2S 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_27",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,134 +1,119 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2S 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_36",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2S 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_36",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35",
|
||||
"25"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,134 +1,107 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2S 0.8 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_35",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2S 0.8 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_35",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25",
|
||||
"35"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
@@ -1,134 +1,119 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2S",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_26",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL H2S",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_26",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"filament_change_length": [
|
||||
"4"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"20",
|
||||
"35",
|
||||
"20"
|
||||
],
|
||||
"filament_prime_volume": [
|
||||
"30"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"pre_start_fan_time": [
|
||||
"2"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab H2S 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,192 +1,101 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL P2S 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_15",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"90"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"90"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"30"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"90"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"90"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"90"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"90"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL P2S 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_15",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"30"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
@@ -1,186 +1,102 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL P2S 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_16",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"90"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"90"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"25"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"90"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"90"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"90"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"90"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL P2S 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_16",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"25",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,189 +1,115 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL P2S 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_14",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"90"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"90"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"90"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"90"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"90"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"90"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL P2S 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_14",
|
||||
"instantiation": "true",
|
||||
"activate_air_filtration": [
|
||||
"0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"35",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual_e3d"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,186 +1,91 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL P2S 0.8 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_32",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"eng_plate_temp": [
|
||||
"90"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"90"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"90"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"90"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"90"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"90"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL P2S 0.8 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_32",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"35"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P2S 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
@@ -1,119 +1,50 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X1 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_03",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.2 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X1 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_03",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,125 +1,60 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X1 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_04",
|
||||
"instantiation": "true",
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"V"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.6 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X1 0.6 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_04",
|
||||
"instantiation": "true",
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"V"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,121 +1,52 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X1C 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_01",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.2 nozzle",
|
||||
"Bambu Lab P1S 0.2 nozzle",
|
||||
"Bambu Lab P1P 0.2 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X1C 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_01",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.2 nozzle",
|
||||
"Bambu Lab P1S 0.2 nozzle",
|
||||
"Bambu Lab P1P 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,126 +1,65 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X1C 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_02",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X1C 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_02",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"25"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"0.4"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"0.6"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,127 +1,66 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X1C",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_00",
|
||||
"instantiation": "true",
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X1C",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_00",
|
||||
"instantiation": "true",
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"25"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"0.4"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"0.6"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,119 +1,50 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X1E 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_06",
|
||||
"instantiation": "true",
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.2 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X1E 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_06",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,119 +1,50 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X1E 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_07",
|
||||
"instantiation": "true",
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.4 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X1E 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_07",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,123 +1,54 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X1E",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_05",
|
||||
"instantiation": "true",
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X1E",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_05",
|
||||
"instantiation": "true",
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_dual"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,293 +1,128 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X2D 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_21",
|
||||
"instantiation": "true",
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow",
|
||||
"Bowden Standard",
|
||||
"Bowden High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3",
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50",
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30",
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_bridge_speed": [
|
||||
"25",
|
||||
"25",
|
||||
"25",
|
||||
"25"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14",
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2",
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X2D 0.2 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_21",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"3",
|
||||
"3",
|
||||
"3",
|
||||
"3"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2",
|
||||
"2",
|
||||
"2",
|
||||
"2"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift",
|
||||
"nil"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_bowden"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
@@ -1,293 +1,157 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X2D 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_22",
|
||||
"instantiation": "true",
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow",
|
||||
"Bowden Standard",
|
||||
"Bowden High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50",
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30",
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_bridge_speed": [
|
||||
"25",
|
||||
"25",
|
||||
"25",
|
||||
"25"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14",
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"25",
|
||||
"18",
|
||||
"20"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X2D 0.4 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_22",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"25",
|
||||
"18",
|
||||
"18",
|
||||
"20",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"0.4",
|
||||
"0.4",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_bowden_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.4 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,149 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X2D 0.8 nozzle",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_50",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_dev_ams_drying_temperature": [
|
||||
"65",
|
||||
"80",
|
||||
"65",
|
||||
"80"
|
||||
],
|
||||
"filament_dev_ams_drying_time": [
|
||||
"12",
|
||||
"8.0",
|
||||
"12",
|
||||
"8.0"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_flush_temp_fast": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"35",
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift",
|
||||
"nil"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_bowden"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
@@ -1,297 +1,157 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X2D",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_20",
|
||||
"instantiation": "true",
|
||||
"filament_adaptive_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_enable_overhang_speed": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"filament_extruder_variant": [
|
||||
"Direct Drive Standard",
|
||||
"Direct Drive High Flow",
|
||||
"Bowden Standard",
|
||||
"Bowden High Flow"
|
||||
],
|
||||
"filament_flush_temp": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_flush_volumetric_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_overhang_1_4_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_overhang_2_4_speed": [
|
||||
"50",
|
||||
"50",
|
||||
"50",
|
||||
"50"
|
||||
],
|
||||
"filament_overhang_3_4_speed": [
|
||||
"30",
|
||||
"30",
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"filament_overhang_4_4_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_overhang_totally_speed": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_bridge_speed": [
|
||||
"25",
|
||||
"25",
|
||||
"25",
|
||||
"25"
|
||||
],
|
||||
"filament_pre_cooling_temperature": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_pre_cooling_temperature_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_ramming_travel_time_nc": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retract_length_nc": [
|
||||
"14",
|
||||
"14",
|
||||
"14",
|
||||
"14"
|
||||
],
|
||||
"filament_ramming_volumetric_speed": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_ramming_volumetric_speed_nc": [
|
||||
"-1",
|
||||
"-1",
|
||||
"-1",
|
||||
"-1"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift",
|
||||
"nil"
|
||||
],
|
||||
"long_retractions_when_ec": [
|
||||
"1",
|
||||
"1",
|
||||
"1",
|
||||
"1"
|
||||
],
|
||||
"override_process_overhang_speed": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"volumetric_speed_coefficients": [
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0",
|
||||
"0 0 0 0 0 0"
|
||||
],
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"35",
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.6 nozzle",
|
||||
"Bambu Lab X2D 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @BBL X2D",
|
||||
"inherits": "Bambu ASA @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_20",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"65"
|
||||
],
|
||||
"counter_coef_2": [
|
||||
"0.0094"
|
||||
],
|
||||
"counter_coef_3": [
|
||||
"-0.0092"
|
||||
],
|
||||
"counter_limit_max": [
|
||||
"0.2258"
|
||||
],
|
||||
"counter_limit_min": [
|
||||
"-0.0092"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_cooling_before_tower": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_extruder_compatibility": [
|
||||
"24"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95",
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18",
|
||||
"35",
|
||||
"18",
|
||||
"18",
|
||||
"18",
|
||||
"18"
|
||||
],
|
||||
"filament_ramming_travel_time": [
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0",
|
||||
"0"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4",
|
||||
"nil",
|
||||
"0.4",
|
||||
"nil",
|
||||
"nil",
|
||||
"nil"
|
||||
],
|
||||
"filament_tower_interface_print_temp": [
|
||||
"270"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"1",
|
||||
"nil",
|
||||
"1"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"1",
|
||||
"nil",
|
||||
"1",
|
||||
"1",
|
||||
"nil",
|
||||
"1"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift",
|
||||
"Spiral Lift",
|
||||
"nil",
|
||||
"Spiral Lift"
|
||||
],
|
||||
"hole_coef_2": [
|
||||
"0.0013"
|
||||
],
|
||||
"hole_coef_3": [
|
||||
"0.1261"
|
||||
],
|
||||
"hole_limit_max": [
|
||||
"0.1586"
|
||||
],
|
||||
"hole_limit_min": [
|
||||
"0.1261"
|
||||
],
|
||||
"include": [
|
||||
"fdm_filament_template_direct_bowden_e3d"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270",
|
||||
"270"
|
||||
],
|
||||
"retraction_distances_when_ec": [
|
||||
"3",
|
||||
"3",
|
||||
"3",
|
||||
"4",
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X2D 0.6 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,57 +1,54 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @base",
|
||||
"inherits": "fdm_filament_asa",
|
||||
"from": "system",
|
||||
"filament_id": "OFfBpSRI",
|
||||
"instantiation": "false",
|
||||
"description": "When printing this filament, there's a risk of warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
|
||||
"eng_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"35"
|
||||
],
|
||||
"filament_cost": [
|
||||
"31.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.05"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"impact_strength_z": [
|
||||
"4.9"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
]
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA @base",
|
||||
"inherits": "fdm_filament_asa",
|
||||
"from": "system",
|
||||
"filament_id": "OFfBpSRI",
|
||||
"instantiation": "false",
|
||||
"description": "When printing this filament, there's a risk of warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
|
||||
"eng_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"35"
|
||||
],
|
||||
"filament_cost": [
|
||||
"26.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.05"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
]
|
||||
}
|
||||