Merge branch 'main' into feature/texture_displacement
@@ -21,6 +21,7 @@ Paths below are relative to this skill. Commands run from the repository root.
|
|||||||
| Add a printer or nozzle; change models, variants, assets or extruder vectors | [machine-profiles.md](references/machine-profiles.md) |
|
| Add a printer or nozzle; change models, variants, assets or extruder vectors | [machine-profiles.md](references/machine-profiles.md) |
|
||||||
| Add a quality tier or tune a process | [process-profiles.md](references/process-profiles.md) |
|
| Add a quality tier or tune a process | [process-profiles.md](references/process-profiles.md) |
|
||||||
| Create a vendor bundle; diagnose loading or inheritance; migrate preset names | [vendor-bundle.md](references/vendor-bundle.md) |
|
| Create a vendor bundle; diagnose loading or inheritance; migrate preset names | [vendor-bundle.md](references/vendor-bundle.md) |
|
||||||
|
| Name a preset; check what a name must equal | [naming.md](references/naming.md) |
|
||||||
| Change ids; diagnose AMS identity | [ids.md](references/ids.md), then `docs/HLSD/filament_id.md` for identity changes |
|
| Change ids; diagnose AMS identity | [ids.md](references/ids.md), then `docs/HLSD/filament_id.md` for identity changes |
|
||||||
| Review a profile diff | [review-checklist.md](references/review-checklist.md) |
|
| Review a profile diff | [review-checklist.md](references/review-checklist.md) |
|
||||||
| Run checks, interpret failures, test another tree or verify in the app | [validation.md](references/validation.md) |
|
| Run checks, interpret failures, test another tree or verify in the app | [validation.md](references/validation.md) |
|
||||||
@@ -44,7 +45,10 @@ Paths below are relative to this skill. Commands run from the repository root.
|
|||||||
update in-tree references too. See [migration rules](references/vendor-bundle.md#renamed_from).
|
update in-tree references too. See [migration rules](references/vendor-bundle.md#renamed_from).
|
||||||
6. **Compatibility uses exact printer variant names.** Every instantiated non-library filament
|
6. **Compatibility uses exact printer variant names.** Every instantiated non-library filament
|
||||||
needs a non-empty `compatible_printers` in its own file. Library fallbacks may omit it;
|
needs a non-empty `compatible_printers` in its own file. Library fallbacks may omit it;
|
||||||
library printer-specific tunes use a non-empty list. Keep same-product tunes disjoint.
|
library printer-specific tunes use a non-empty list. One variant may be claimed by only one
|
||||||
|
profile per filament product (`filament_id`); an overlap is resolved by moving the variant to the
|
||||||
|
most specific preset, which is preferred over deleting a profile. See
|
||||||
|
[one variant, one profile](references/filament-profiles.md#overlapping-coverage-one-variant-one-profile-per-product).
|
||||||
7. **Preset values are strings or arrays of strings.** Use `"instantiation": "false"`, not `false`.
|
7. **Preset values are strings or arrays of strings.** Use `"instantiation": "false"`, not `false`.
|
||||||
Model `nozzle_diameter` is a `;`-separated string; machine `nozzle_diameter` is an array.
|
Model `nozzle_diameter` is a `;`-separated string; machine `nozzle_diameter` is an array.
|
||||||
Wrong types can abort loading; see [failure scopes](references/vendor-bundle.md#failure-modes-ranked-by-blast-radius).
|
Wrong types can abort loading; see [failure scopes](references/vendor-bundle.md#failure-modes-ranked-by-blast-radius).
|
||||||
@@ -87,7 +91,8 @@ Paths below are relative to this skill. Commands run from the repository root.
|
|||||||
```
|
```
|
||||||
|
|
||||||
On Windows use `py -3` instead of `python3`, and `scripts\check_profile.bat -Vendor "<Vendor>"`
|
On Windows use `py -3` instead of `python3`, and `scripts\check_profile.bat -Vendor "<Vendor>"`
|
||||||
/ `scripts\check_profile.bat`. Logs: `.test/check_profiles/logs/<check>.log`.
|
/ `scripts\check_profile.bat`. Logs land in a per-user cache dir (see
|
||||||
|
[validation.md](references/validation.md)).
|
||||||
Id checks remain tree-wide under `--vendor`; filament-only bundles skip the default slice check.
|
Id checks remain tree-wide under `--vendor`; filament-only bundles skip the default slice check.
|
||||||
See [validation.md](references/validation.md) for flags, coverage and error remedies.
|
See [validation.md](references/validation.md) for flags, coverage and error remedies.
|
||||||
5. **Verify the changed behavior.** Slice newly added non-default processes explicitly, and
|
5. **Verify the changed behavior.** Slice newly added non-default processes explicitly, and
|
||||||
|
|||||||
@@ -103,6 +103,57 @@ name.
|
|||||||
- Copying a base's full printer list onto a nozzle-specific variant produces duplicate combobox entries —
|
- Copying a base's full printer list onto a nozzle-specific variant produces duplicate combobox entries —
|
||||||
a real shipped bug twice over.
|
a real shipped bug twice over.
|
||||||
|
|
||||||
|
## Overlapping coverage: one variant, one profile per product
|
||||||
|
|
||||||
|
`filament_id` is the **product** key, not the preset key — every variant of one product shares it
|
||||||
|
(`<filament_vendor>/<filament_type>/<name-before-@>`). So if one printer variant appears in the
|
||||||
|
`compatible_printers` of two presets of that product, the slicer cannot tell them apart at AMS match time.
|
||||||
|
The C++ validator reports `Ambiguous AMS filament match: N presets share filament_id "X" … printer "Y"`.
|
||||||
|
`orca_profile_tool.py check` does **not** see it and passes. Resolve the overlap by **specificity**: keep
|
||||||
|
the variant on the most specific profile and remove it from every more general one. Deleting a profile is
|
||||||
|
the least preferred fix — moving coverage keeps the tune that users rely on.
|
||||||
|
|
||||||
|
Judge specificity from the profile's `compatible_printers` — how many variants it actually covers — and
|
||||||
|
use the name only as a secondary, easily-vague hint; decide by the lists, with a best judgement call on
|
||||||
|
the name. Naming conventions differ by vendor: BBL's is the reference (`@<Vendor> <Model>` for a whole
|
||||||
|
model, `@<Vendor> <Model> <nozzle> nozzle` for one variant, `@<Vendor>` for a vendor-wide generic), but
|
||||||
|
others vary (`@<printer model>`, a printer serial, or Creality's `@<Model>-all`). A name never overrides
|
||||||
|
the list — see [preset naming](naming.md) for the shapes.
|
||||||
|
|
||||||
|
Specificity, most to least:
|
||||||
|
|
||||||
|
1. **Variant-specialized** — lists a single printer variant (BBL-style
|
||||||
|
`... @<Vendor> <Model> <nozzle> nozzle`).
|
||||||
|
2. **Model-specialized** — lists the variants of one printer model (BBL-style `... @<Vendor> <Model>`).
|
||||||
|
It should cover every variant of its model, not only the nozzle it was authored for.
|
||||||
|
3. **Family / series** — lists variants spanning a printer family or series.
|
||||||
|
4. **Generic / catch-all** — vendor-wide, covering many unrelated models (often the bare
|
||||||
|
`Generic <mat> @<Vendor>`).
|
||||||
|
|
||||||
|
Rules:
|
||||||
|
|
||||||
|
- A model-specialized profile is extended to **all** variants of its model, and each variant it thereby
|
||||||
|
starts covering is removed from the family and generic profiles that also listed it — including variants
|
||||||
|
that had no overlap before. Apply it per nozzle, not just 0.4.
|
||||||
|
- Apply it **per product**: trim only the material that has a specialized profile from the generic; a
|
||||||
|
material whose product has no specialized profile keeps the variant in the generic.
|
||||||
|
- Never strip coverage a variant has nowhere else to get. If a variant has no variant-level specialized
|
||||||
|
profile, the next level down keeps it; when the model has specialized profiles, the model-level one wins
|
||||||
|
over the family/generic.
|
||||||
|
- Moving coverage is preferred over deleting. If a profile must be deleted, remove the more general
|
||||||
|
one, not the specialized profile that carries the tune.
|
||||||
|
- After moving coverage, repoint the affected `default_filament_profile` (machine) and clean the model's
|
||||||
|
`default_materials`: they should name the most specific profile that covers the variant, and should not
|
||||||
|
keep generic entries that no longer cover the model. This rule applies equally when adding or fixing
|
||||||
|
defaults.
|
||||||
|
|
||||||
|
Multiple profiles of one product with **disjoint** `compatible_printers` is the intended end state.
|
||||||
|
Adding coverage to the specialized profile and removing it from the generic is the preferred direction.
|
||||||
|
|
||||||
|
**Detection caveat:** `orca_profile_tool.py check` is blind to this; only the C++ validator behind the full
|
||||||
|
`./scripts/check_profile.sh` reports it (`validate_system`). Always confirm with that, not the vendor-scoped
|
||||||
|
loop.
|
||||||
|
|
||||||
## Alias shadowing
|
## Alias shadowing
|
||||||
|
|
||||||
A printer-specific filament in either the library or a vendor bundle supersedes the library fallback
|
A printer-specific filament in either the library or a vendor bundle supersedes the library fallback
|
||||||
|
|||||||
@@ -0,0 +1,60 @@
|
|||||||
|
# Preset naming
|
||||||
|
|
||||||
|
A preset's `name` is the loader's key, not decoration. The index registers it; `inherits`,
|
||||||
|
`compatible_printers` and the `default_*` keys reference it by the exact string; `renamed_from` depends
|
||||||
|
on it; and `setting_id` / `filament_id` hash it (see [ids.md](ids.md)). Two presets of one type in a
|
||||||
|
bundle may not share a name (`check_preset_name_uniqueness`). Treat a name change as an identity change,
|
||||||
|
not a relabel.
|
||||||
|
|
||||||
|
Naming is convention only where the loader does not parse it. What the loader actually acts on:
|
||||||
|
|
||||||
|
| Type | Shape | Acted on |
|
||||||
|
| --- | --- | --- |
|
||||||
|
| `machine_model` | `<Model>` | the exact string, named by a variant's `printer_model` |
|
||||||
|
| `machine` | `<Model> <nozzle> nozzle` | the exact string, named by `compatible_printers`; `printer_variant` must equal a nozzle diameter |
|
||||||
|
| `process` | `<lh>mm <Quality> @<target>` | the exact string when referenced or selected; the `@<target>` half is a label |
|
||||||
|
| `filament` | `<Product> @<target>` | text before the first `@` is the **alias**, used for shadowing; the rest is a label |
|
||||||
|
|
||||||
|
## `machine_model`
|
||||||
|
|
||||||
|
`<Model>` — the vendor-prefixed model name (`Bambu Lab X1 Carbon`, `Creality K1`, `Prusa CORE One`). A
|
||||||
|
variant names it verbatim in `printer_model`; a mismatch makes the variant invalid. `check_name_consistency`
|
||||||
|
forces the index entry to equal the file's `name`, and the variant's `printer_model` targets this string
|
||||||
|
([A `machine_model` is not a config preset](machine-profiles.md#a-machine_model-is-not-a-config-preset)).
|
||||||
|
It is also the `<Model>_cover.png` and bed-asset stem.
|
||||||
|
|
||||||
|
## `machine` (variant)
|
||||||
|
|
||||||
|
`<Model> <nozzle> nozzle` is near-universal (`Bambu Lab X1 Carbon 0.4 nozzle`). `printer_variant` holds
|
||||||
|
the bare nozzle (`0.4`) and must be an exact member of the model's `nozzle_diameter` list — the hard
|
||||||
|
rules are in [The `machine` variant](machine-profiles.md#the-machine-variant). Casing varies
|
||||||
|
(`nozzle` / `Nozzle`): match the bundle, not this page. A variant that is not nozzle-specific (a special
|
||||||
|
toolhead, a multi-material build) may drop the suffix — still an exact reference. Bases are named
|
||||||
|
`fdm_machine_common` / `fdm_<vendor>_common`.
|
||||||
|
|
||||||
|
## `process`
|
||||||
|
|
||||||
|
`<layer height>mm <quality> @<target>` — [process-profiles.md](process-profiles.md#naming) has the
|
||||||
|
quality ladder and the `fdm_process_*` base names. The `@<target>` is a human label, not a reference: it
|
||||||
|
usually does not equal a real variant, and compatibility comes from the resolved `compatible_printers`
|
||||||
|
list or condition.
|
||||||
|
|
||||||
|
## `filament`
|
||||||
|
|
||||||
|
`<Product> @<target>`. The product half is what `filament_id` hashes and what survives as the **alias** up
|
||||||
|
to the first `@`; the target half is a label except for reserved forms:
|
||||||
|
|
||||||
|
- `@base` — a non-instantiated product root. `@base` is convention; a base is really identified by
|
||||||
|
`instantiation: "false"` and no `setting_id` ([the three-part shape](filament-profiles.md#the-three-part-shape)).
|
||||||
|
- `@System` — the OrcaFilamentLibrary selectable shim. The literal `Generic <mat> @System` is
|
||||||
|
load-bearing for 3MF/project recovery, beyond the alias rule ([alias shadowing](filament-profiles.md#alias-shadowing)).
|
||||||
|
- `@<Vendor>`, `@<Vendor> <Model>`, `@<Vendor> <Model> <nozzle> nozzle` — printer tunes, BBL's shape.
|
||||||
|
Other vendors differ (a bare model, a printer serial, Creality's `@<Model>-all`). Specificity is judged
|
||||||
|
from `compatible_printers`, not the name
|
||||||
|
([one variant, one profile](filament-profiles.md#overlapping-coverage-one-variant-one-profile-per-product)).
|
||||||
|
|
||||||
|
## Not the same as the filename
|
||||||
|
|
||||||
|
The loader keys off `name`, and a filename that disagrees usually still loads. Index `name` must equal the
|
||||||
|
file's `name`, and the filename should match `sub_path`; a mismatch that differs only in case breaks
|
||||||
|
another platform ([cross-platform paths](validation.md#cross-platform-paths)).
|
||||||
@@ -79,8 +79,15 @@ and written in the preset's own file — golden rule 6, with the flattened-vs-ow
|
|||||||
inherited or copied the base's full printer list, and for two presets of one product with overlapping
|
inherited or copied the base's full printer list, and for two presets of one product with overlapping
|
||||||
lists — duplicate combobox entries and an ambiguous AMS match.
|
lists — duplicate combobox entries and an ambiguous AMS match.
|
||||||
|
|
||||||
|
Two presets of one product (`filament_id`) must not share a variant. Resolve it by specificity: move the
|
||||||
|
variant to the most specific preset and remove it from the more general ones — preferred over deleting a
|
||||||
|
profile. Then repoint the machine's `default_filament_profile` and the model's `default_materials` at the
|
||||||
|
profile that now covers it. See
|
||||||
|
[one variant, one profile](filament-profiles.md#overlapping-coverage-one-variant-one-profile-per-product).
|
||||||
|
|
||||||
*Why:* real shipped bugs twice (`b7b3418baf` "showing up everywhere", `ff83aa41ef` duplicate Flashforge
|
*Why:* real shipped bugs twice (`b7b3418baf` "showing up everywhere", `ff83aa41ef` duplicate Flashforge
|
||||||
entries).
|
entries). The Python `check` passes on an overlap; only the full `check_profile.sh` (`validate_system`)
|
||||||
|
reports `Ambiguous AMS filament match`.
|
||||||
|
|
||||||
## 6. Model ↔ variant ↔ process consistency
|
## 6. Model ↔ variant ↔ process consistency
|
||||||
|
|
||||||
@@ -128,7 +135,11 @@ numbers nobody measured.
|
|||||||
## 11. `default_materials` (checked by CI)
|
## 11. `default_materials` (checked by CI)
|
||||||
|
|
||||||
`check` fails on a `default_materials` / `default_filament_profile` name that resolves to no system
|
`check` fails on a `default_materials` / `default_filament_profile` name that resolves to no system
|
||||||
filament, so a dangling entry no longer reaches review. Scope the run while working on one vendor:
|
filament, so a dangling entry no longer reaches review. When compatibility moves between profiles of a
|
||||||
|
product, the machine's `default_filament_profile` and the model's `default_materials` must be repointed at
|
||||||
|
the most specific profile that still covers the variant, dropping generic entries that no longer apply —
|
||||||
|
the same [specificity rule](filament-profiles.md#overlapping-coverage-one-variant-one-profile-per-product)
|
||||||
|
applies when adding or fixing defaults. Scope the run while working on one vendor:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
python3 scripts/orca_profile_tool.py check --vendor "<Vendor>" # py -3 on Windows
|
python3 scripts/orca_profile_tool.py check --vendor "<Vendor>" # py -3 on Windows
|
||||||
|
|||||||
@@ -20,8 +20,11 @@ default Windows client refuses to run a checked-out `.ps1` at all. The `.ps1` fi
|
|||||||
probing `py -3`, then `python`, then `python3`; run the tool by hand with `py -3` for the same reason.
|
probing `py -3`, then `python`, then `python3`; run the tool by hand with `py -3` for the same reason.
|
||||||
|
|
||||||
Every check in the run happens even after an earlier one fails; the script exits non-zero if any did, and writes
|
Every check in the run happens even after an earlier one fails; the script exits non-zero if any did, and writes
|
||||||
`.test/check_profiles/logs/<check>.log` plus, on failure, `.test/check_profiles/pr_comment.md` — the same
|
`logs/<check>.log` plus, on failure, `pr_comment.md` under a per-user cache dir — the same report CI posts on the PR.
|
||||||
report CI posts on the PR. A stale `.test/check_profiles/.lock` after a crash must be removed by hand.
|
That dir is `~/Library/Caches/orca-profile-check` on macOS, `${XDG_CACHE_HOME:-~/.cache}/orca-profile-check` on Linux
|
||||||
|
and `%LOCALAPPDATA%\orca-profile-check` on Windows; it is named apart from OrcaSlicer's own per-user dirs and sits
|
||||||
|
outside the checkout, so every worktree shares one copy. `--work-dir` / `-WorkDir` overrides it. A stale `.lock`
|
||||||
|
there after a crash must be removed by hand.
|
||||||
|
|
||||||
## The five checks
|
## The five checks
|
||||||
|
|
||||||
@@ -150,9 +153,10 @@ Two things it therefore does **not** enforce:
|
|||||||
|
|
||||||
Built from `src/dev-utils/OrcaSlicer_profile_validator.cpp` (`-DORCA_TOOLS=ON`).
|
Built from `src/dev-utils/OrcaSlicer_profile_validator.cpp` (`-DORCA_TOOLS=ON`).
|
||||||
Both scripts find a local build under `build*/` — `check_profile.sh` tries Release, RelWithDebInfo, then
|
Both scripts find a local build under `build*/` — `check_profile.sh` tries Release, RelWithDebInfo, then
|
||||||
Debug, and `check_profile.ps1` adds MinSizeRel — else they download the nightly into
|
Debug, and `check_profile.ps1` adds MinSizeRel — else they download the nightly into the
|
||||||
`.test/check_profiles/validator`. Pass `--download` / `-Download` to match CI exactly, since a stale
|
`validator` subdirectory of the per-user cache dir (see above). Pass `--download` / `-Download` to
|
||||||
local build is used silently. Windows looks for `OrcaSlicer_profile_validator.exe`.
|
match CI exactly, since a stale local build is used silently. Windows looks for
|
||||||
|
`OrcaSlicer_profile_validator.exe`.
|
||||||
|
|
||||||
If your build lives somewhere else entirely, point at it with `--validator` / `-Validator`, or set
|
If your build lives somewhere else entirely, point at it with `--validator` / `-Validator`, or set
|
||||||
`ORCA_PROFILE_VALIDATOR` (`$env:ORCA_PROFILE_VALIDATOR` in PowerShell).
|
`ORCA_PROFILE_VALIDATOR` (`$env:ORCA_PROFILE_VALIDATOR` in PowerShell).
|
||||||
@@ -223,7 +227,7 @@ Keep stems tidy too, but a space immediately before `.json` is not a trailing pa
|
|||||||
| `references unknown compatible_printers "<p>"` | the printer was renamed or deleted; fix the reference |
|
| `references unknown compatible_printers "<p>"` | the printer was renamed or deleted; fix the reference |
|
||||||
| `references renamed compatible_printers "<old>" (now "<new>")` | in-tree references must name the current preset; `renamed_from` does not excuse them |
|
| `references renamed compatible_printers "<old>" (now "<new>")` | in-tree references must name the current preset; `renamed_from` does not excuse them |
|
||||||
| `Filament preset "<f>" is missing compatible_printers setting` | non-library filaments need a non-empty list in their **own** file — the flattened-vs-own-key trap is in [filament-profiles.md](filament-profiles.md#compatible_printers) |
|
| `Filament preset "<f>" is missing compatible_printers setting` | non-library filaments need a non-empty list in their **own** file — the flattened-vs-own-key trap is in [filament-profiles.md](filament-profiles.md#compatible_printers) |
|
||||||
| `Ambiguous AMS filament match: N presets share filament_id "X" … printer "Y"` | make the lists disjoint, or fix an `inherits` pointing at another material's `@base` |
|
| `Ambiguous AMS filament match: N presets share filament_id "X" … printer "Y"` | make the lists disjoint by [specificity](filament-profiles.md#overlapping-coverage-one-variant-one-profile-per-product) — the specialized profile keeps the variant, the general ones drop it; prefer this over deleting a profile — or fix an `inherits` pointing at another material's `@base`. `orca_profile_tool.py check` does not catch this; only `validate_system` here does |
|
||||||
| `Layer height cannot exceed nozzle diameter.` / `Line width too small` | `Print::validate()` flow rules |
|
| `Layer height cannot exceed nozzle diameter.` / `Line width too small` | `Print::validate()` flow rules |
|
||||||
| `[ERROR] … no <V>.json list references it, so it never loads` | `update-index`, or delete the file |
|
| `[ERROR] … no <V>.json list references it, so it never loads` | `update-index`, or delete the file |
|
||||||
| `[ERROR] … references it and it declares no profile type` | set the correct `type` explicitly, then `normalize` and `update-index` |
|
| `[ERROR] … references it and it declares no profile type` | set the correct `type` explicitly, then `normalize` and `update-index` |
|
||||||
|
|||||||
@@ -330,12 +330,13 @@ jobs:
|
|||||||
# sources are unchanged, so a re-run of the same commit would skip the
|
# sources are unchanged, so a re-run of the same commit would skip the
|
||||||
# OrcaSlicer module and ship no test asset. A per-run value in that module's
|
# OrcaSlicer module and ship no test asset. A per-run value in that module's
|
||||||
# env keeps it rebuilding; orca_deps stays cached, and the compiler cache
|
# env keeps it rebuilding; orca_deps stays cached, and the compiler cache
|
||||||
# still serves the rebuild.
|
# still serves the rebuild. run-tests on the same module builds the test
|
||||||
- name: Inject commit hash and flatpak-builder cache buster into Flatpak manifest
|
# binaries.
|
||||||
|
- name: Inject commit hash, run-tests and cache buster into Flatpak manifest
|
||||||
env:
|
env:
|
||||||
flatpak_builder_cache_buster: ${{ github.run_id }}-${{ github.run_attempt }}
|
flatpak_builder_cache_buster: ${{ github.run_id }}-${{ github.run_attempt }}
|
||||||
run: |
|
run: |
|
||||||
sed -i "/name: OrcaSlicer/{n;s|buildsystem: simple|buildsystem: simple\n build-options:\n env:\n flatpak_builder_cache_buster: \"$flatpak_builder_cache_buster\"\n git_commit_hash: \"$git_commit_hash\"|}" \
|
sed -i "/name: OrcaSlicer/{n;s|buildsystem: simple|buildsystem: simple\n run-tests: true\n build-options:\n env:\n flatpak_builder_cache_buster: \"$flatpak_builder_cache_buster\"\n git_commit_hash: \"$git_commit_hash\"|}" \
|
||||||
scripts/flatpak/com.orcaslicer.OrcaSlicer.yml
|
scripts/flatpak/com.orcaslicer.OrcaSlicer.yml
|
||||||
shell: bash
|
shell: bash
|
||||||
# flatpak-builder's --ccache only wraps cc and gcc, and the manifest builds
|
# flatpak-builder's --ccache only wraps cc and gcc, and the manifest builds
|
||||||
@@ -381,9 +382,6 @@ jobs:
|
|||||||
save-cache: false
|
save-cache: false
|
||||||
arch: ${{ matrix.variant.arch }}
|
arch: ${{ matrix.variant.arch }}
|
||||||
upload-artifact: false
|
upload-artifact: false
|
||||||
# run-tests fires the module's build-only test-commands; keep-build-dirs
|
|
||||||
# retains the binaries for the packaging step below.
|
|
||||||
run-tests: true
|
|
||||||
keep-build-dirs: true
|
keep-build-dirs: true
|
||||||
# The build has just touched everything it can use, so an object untouched
|
# The build has just touched everything it can use, so an object untouched
|
||||||
# for a week is dead, usually orphaned by a flag change.
|
# for a week is dead, usually orphaned by a flag change.
|
||||||
@@ -449,10 +447,13 @@ jobs:
|
|||||||
# the bounds checks are compiled in, so a stripped exe still catches them.
|
# the bounds checks are compiled in, so a stripped exe still catches them.
|
||||||
find "$d/build_flatpak/tests" -type f -perm -u+x -exec strip --strip-unneeded {} + 2>/dev/null || true
|
find "$d/build_flatpak/tests" -type f -perm -u+x -exec strip --strip-unneeded {} + 2>/dev/null || true
|
||||||
# At runtime the tests read tests/ (TEST_DATA_DIR), scripts/, and under
|
# At runtime the tests read tests/ (TEST_DATA_DIR), scripts/, and under
|
||||||
# resources/ the shipped profiles (PROFILES_DIR) and the printers/ maps.
|
# resources/ the shipped profiles (PROFILES_DIR), the printers/ maps, and
|
||||||
|
# the icon SVGs (NativeCommands icon names are checked against them).
|
||||||
find "$d" -mindepth 1 -maxdepth 1 -type d \
|
find "$d" -mindepth 1 -maxdepth 1 -type d \
|
||||||
! -name tests ! -name build_flatpak ! -name scripts ! -name resources -exec rm -rf {} +
|
! -name tests ! -name build_flatpak ! -name scripts ! -name resources -exec rm -rf {} +
|
||||||
find "$d/resources" -mindepth 1 -maxdepth 1 ! -name profiles ! -name printers -exec rm -rf {} +
|
find "$d/resources" -mindepth 1 -maxdepth 1 ! -name profiles ! -name printers ! -name images -exec rm -rf {} +
|
||||||
|
# Only the SVGs are read; the png/ico/icns/gif assets are ~35MB of dead weight.
|
||||||
|
find "$d/resources/images" -mindepth 1 -maxdepth 1 ! -name '*.svg' -exec rm -rf {} + 2>/dev/null || true
|
||||||
tar -cf flatpak-test-asset.tar flatpak_app "$d"
|
tar -cf flatpak-test-asset.tar flatpak_app "$d"
|
||||||
- name: Upload flatpak test asset
|
- name: Upload flatpak test asset
|
||||||
uses: actions/upload-artifact@v7
|
uses: actions/upload-artifact@v7
|
||||||
|
|||||||
@@ -448,9 +448,26 @@ jobs:
|
|||||||
|
|
||||||
- name: Install nsis
|
- name: Install nsis
|
||||||
if: runner.os == 'Windows' && !vars.SELF_HOSTED
|
if: runner.os == 'Windows' && !vars.SELF_HOSTED
|
||||||
|
shell: pwsh
|
||||||
|
# The Chocolatey community feed intermittently 504s, and `choco install`
|
||||||
|
# exits 0 when package resolution fails that way. Unchecked, the job then
|
||||||
|
# builds for ~25 minutes before `cpack -G NSIS` reports a missing makensis.
|
||||||
|
# Retry the install and verify makensis itself, so a real failure stops here.
|
||||||
run: |
|
run: |
|
||||||
dir "C:/Program Files (x86)/Windows Kits/10/Include"
|
dir "C:/Program Files (x86)/Windows Kits/10/Include"
|
||||||
choco install nsis
|
$nsisDir = Join-Path ${env:ProgramFiles(x86)} 'NSIS'
|
||||||
|
$makensis = Join-Path $nsisDir 'makensis.exe'
|
||||||
|
for ($attempt = 1; $attempt -le 3 -and -not (Test-Path $makensis); $attempt++) {
|
||||||
|
if ($attempt -gt 1) { Start-Sleep -Seconds (15 * $attempt) }
|
||||||
|
Write-Host "::group::choco install nsis (attempt $attempt)"
|
||||||
|
choco install nsis --yes --no-progress
|
||||||
|
Write-Host "::endgroup::"
|
||||||
|
}
|
||||||
|
if (-not (Test-Path $makensis)) {
|
||||||
|
throw "NSIS install failed: $makensis not found after 3 attempts."
|
||||||
|
}
|
||||||
|
& $makensis /VERSION
|
||||||
|
$nsisDir | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
|
||||||
|
|
||||||
- name: Build slicer Win
|
- name: Build slicer Win
|
||||||
if: runner.os == 'Windows'
|
if: runner.os == 'Windows'
|
||||||
|
|||||||
@@ -75,8 +75,6 @@ jobs:
|
|||||||
if [ -z "$base" ] || [ "$base" = "0000000000000000000000000000000000000000" ] || ! git cat-file -e "$base^{commit}" 2>/dev/null; then
|
if [ -z "$base" ] || [ "$base" = "0000000000000000000000000000000000000000" ] || ! git cat-file -e "$base^{commit}" 2>/dev/null; then
|
||||||
base="$head^"
|
base="$head^"
|
||||||
fi
|
fi
|
||||||
echo "Diffing $base..$head"
|
|
||||||
|
|
||||||
mapfile -t candidates < <(
|
mapfile -t candidates < <(
|
||||||
git diff --name-only "$base" "$head" -- resources/profiles \
|
git diff --name-only "$base" "$head" -- resources/profiles \
|
||||||
| sed -nE 's#^resources/profiles/([^/]+)/.*#\1#p; s#^resources/profiles/([^/]+)\.json$#\1#p' \
|
| sed -nE 's#^resources/profiles/([^/]+)/.*#\1#p; s#^resources/profiles/([^/]+)\.json$#\1#p' \
|
||||||
@@ -95,7 +93,6 @@ jobs:
|
|||||||
done
|
done
|
||||||
|
|
||||||
if [ "${#vendors[@]}" -eq 0 ]; then
|
if [ "${#vendors[@]}" -eq 0 ]; then
|
||||||
echo "No changed vendor profiles in this push; nothing to publish."
|
|
||||||
echo "vendors=" >> "$GITHUB_OUTPUT"
|
echo "vendors=" >> "$GITHUB_OUTPUT"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
@@ -138,13 +135,10 @@ jobs:
|
|||||||
done
|
done
|
||||||
|
|
||||||
if [ "${#unauthorized[@]}" -ne 0 ]; then
|
if [ "${#unauthorized[@]}" -ne 0 ]; then
|
||||||
echo "Changed vendor profiles are not covered by FOLDER_MERGERS: ${unauthorized[*]}"
|
|
||||||
echo "No profile caches will be published for this push."
|
|
||||||
echo "vendors=" >> "$GITHUB_OUTPUT"
|
echo "vendors=" >> "$GITHUB_OUTPUT"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
printf 'Changed vendors: %s\n' "${vendors[*]}"
|
|
||||||
echo "vendors=${vendors[*]}" >> "$GITHUB_OUTPUT"
|
echo "vendors=${vendors[*]}" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
- name: Resolve Orca version
|
- name: Resolve Orca version
|
||||||
@@ -163,7 +157,6 @@ jobs:
|
|||||||
# OrcaCloud keys R2 on; orca_ver (X.Y.Z) is the asset-name prefix.
|
# OrcaCloud keys R2 on; orca_ver (X.Y.Z) is the asset-name prefix.
|
||||||
echo "release_tag=$raw" >> "$GITHUB_OUTPUT"
|
echo "release_tag=$raw" >> "$GITHUB_OUTPUT"
|
||||||
echo "orca_ver=$orca_ver" >> "$GITHUB_OUTPUT"
|
echo "orca_ver=$orca_ver" >> "$GITHUB_OUTPUT"
|
||||||
echo "Orca version: release_tag=$raw asset_prefix=$orca_ver"
|
|
||||||
|
|
||||||
- name: Validate profile versions
|
- name: Validate profile versions
|
||||||
id: pver
|
id: pver
|
||||||
@@ -179,7 +172,6 @@ jobs:
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
printf '%s\t%s\n' "$v" "$pv" >> "$RUNNER_TEMP/pver.tsv"
|
printf '%s\t%s\n' "$v" "$pv" >> "$RUNNER_TEMP/pver.tsv"
|
||||||
echo "$v -> $pv"
|
|
||||||
done
|
done
|
||||||
|
|
||||||
- name: Download generate_system_cache
|
- name: Download generate_system_cache
|
||||||
@@ -214,7 +206,6 @@ jobs:
|
|||||||
pv="$(awk -F'\t' -v v="$v" '$1==v{print $2}' "$RUNNER_TEMP/pver.tsv")"
|
pv="$(awk -F'\t' -v v="$v" '$1==v{print $2}' "$RUNNER_TEMP/pver.tsv")"
|
||||||
name="${orca_ver}_${v}_${pv}_${ts}.zip"
|
name="${orca_ver}_${v}_${pv}_${ts}.zip"
|
||||||
( cd resources/profiles && zip -q -j "$out/$name" "$v.opc" )
|
( cd resources/profiles && zip -q -j "$out/$name" "$v.opc" )
|
||||||
echo "packaged $name"
|
|
||||||
done
|
done
|
||||||
echo "dir=$out" >> "$GITHUB_OUTPUT"
|
echo "dir=$out" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
|
|||||||
@@ -520,6 +520,28 @@ jobs:
|
|||||||
} catch (error) {
|
} catch (error) {
|
||||||
core.warning(`Merged successfully, but dispatching build_all.yml failed: ${error.message}`);
|
core.warning(`Merged successfully, but dispatching build_all.yml failed: ${error.message}`);
|
||||||
}
|
}
|
||||||
|
// ---- re-kick the profile publish ----
|
||||||
|
// Same reason as above: post_merge_profiles.yml is push-triggered, so a
|
||||||
|
// GITHUB_TOKEN merge never starts it. workflow_dispatch skips the paths:
|
||||||
|
// filter, so only dispatch when the PR actually touched profiles.
|
||||||
|
const touchesProfiles = files.some((file) =>
|
||||||
|
[file.filename, file.previous_filename]
|
||||||
|
.filter(Boolean)
|
||||||
|
.some((p) => p.startsWith('resources/profiles/'))
|
||||||
|
);
|
||||||
|
if (touchesProfiles) {
|
||||||
|
try {
|
||||||
|
await github.rest.actions.createWorkflowDispatch({
|
||||||
|
owner,
|
||||||
|
repo,
|
||||||
|
workflow_id: 'post_merge_profiles.yml',
|
||||||
|
ref: pr.base.ref
|
||||||
|
});
|
||||||
|
core.info(`Dispatched post_merge_profiles.yml on ${pr.base.ref}.`);
|
||||||
|
} catch (error) {
|
||||||
|
core.warning(`Merged successfully, but dispatching post_merge_profiles.yml failed: ${error.message}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
label-profile:
|
label-profile:
|
||||||
# Independent of the merge rules: any PR that changes only files inside
|
# Independent of the merge rules: any PR that changes only files inside
|
||||||
@@ -529,7 +551,7 @@ jobs:
|
|||||||
&& github.event_name == 'pull_request_target'
|
&& github.event_name == 'pull_request_target'
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
pull-requests: read
|
pull-requests: write
|
||||||
issues: write
|
issues: write
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 5
|
timeout-minutes: 5
|
||||||
@@ -636,7 +658,7 @@ jobs:
|
|||||||
&& github.event_name == 'pull_request_target'
|
&& github.event_name == 'pull_request_target'
|
||||||
permissions:
|
permissions:
|
||||||
contents: read # delegatable subtree, for file modes
|
contents: read # delegatable subtree, for file modes
|
||||||
pull-requests: read
|
pull-requests: write
|
||||||
issues: write # label + comment
|
issues: write # label + comment
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
|
|||||||
@@ -52,5 +52,4 @@ internal_docs/
|
|||||||
__pycache__/
|
__pycache__/
|
||||||
*.pyc
|
*.pyc
|
||||||
*.opc
|
*.opc
|
||||||
/.test/
|
|
||||||
docs/superpowers/
|
docs/superpowers/
|
||||||
@@ -5,7 +5,7 @@
|
|||||||
#if defined (__GNUC__) && ! defined (__cplusplus)
|
#if defined (__GNUC__) && ! defined (__cplusplus)
|
||||||
typedef unsigned long long t1;typedef t1*t2;
|
typedef unsigned long long t1;typedef t1*t2;
|
||||||
-void g(){}
|
-void g(){}
|
||||||
+void g(int,t1 const*,t1,t2,t1 const*,int){}
|
+void g(int a,t1 const*b,t1 c,t2 dd,t1 const*e,int ff){}
|
||||||
void h(){}
|
void h(){}
|
||||||
static __inline__ t1 e(t2 rp,t2 up,int n,t1 v0)
|
static __inline__ t1 e(t2 rp,t2 up,int n,t1 v0)
|
||||||
{t1 c,x,r;int i;if(v0){c=1;for(i=1;i<n;i++){x=up[i];r=x+1;rp[i]=r;}}return c;}
|
{t1 c,x,r;int i;if(v0){c=1;for(i=1;i<n;i++){x=up[i];r=x+1;rp[i]=r;}}return c;}
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
#if defined (__GNUC__) && ! defined (__cplusplus)
|
#if defined (__GNUC__) && ! defined (__cplusplus)
|
||||||
typedef unsigned long long t1;typedef t1*t2;
|
typedef unsigned long long t1;typedef t1*t2;
|
||||||
-void g(){}
|
-void g(){}
|
||||||
+void g(int,t1 const*,t1,t2,t1 const*,int){}
|
+void g(int a,t1 const*b,t1 c,t2 dd,t1 const*e,int ff){}
|
||||||
void h(){}
|
void h(){}
|
||||||
static __inline__ t1 e(t2 rp,t2 up,int n,t1 v0)
|
static __inline__ t1 e(t2 rp,t2 up,int n,t1 v0)
|
||||||
{t1 c,x,r;int i;if(v0){c=1;for(i=1;i<n;i++){x=up[i];r=x+1;rp[i]=r;}}return c;}
|
{t1 c,x,r;int i;if(v0){c=1;for(i=1;i<n;i++){x=up[i];r=x+1;rp[i]=r;}}return c;}
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
#if defined (__GNUC__) && ! defined (__cplusplus)
|
#if defined (__GNUC__) && ! defined (__cplusplus)
|
||||||
typedef unsigned long long t1;typedef t1*t2;
|
typedef unsigned long long t1;typedef t1*t2;
|
||||||
-void g(){}
|
-void g(){}
|
||||||
+void g(int,t1 const*,t1,t2,t1 const*,int){}
|
+void g(int a,t1 const*b,t1 c,t2 dd,t1 const*e,int ff){}
|
||||||
void h(){}
|
void h(){}
|
||||||
static __inline__ t1 e(t2 rp,t2 up,int n,t1 v0)
|
static __inline__ t1 e(t2 rp,t2 up,int n,t1 v0)
|
||||||
{t1 c,x,r;int i;if(v0){c=1;for(i=1;i<n;i++){x=up[i];r=x+1;rp[i]=r;}}return c;}
|
{t1 c,x,r;int i;if(v0){c=1;for(i=1;i<n;i++){x=up[i];r=x+1;rp[i]=r;}}return c;}
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ orcaslicer_add_cmake_project(
|
|||||||
-DTBB_BUILD_SHARED=OFF
|
-DTBB_BUILD_SHARED=OFF
|
||||||
-DTBB_BUILD_TESTS=OFF
|
-DTBB_BUILD_TESTS=OFF
|
||||||
-DTBB_TEST=OFF
|
-DTBB_TEST=OFF
|
||||||
|
-DTBB_DISABLE_HWLOC_AUTOMATIC_SEARCH=ON
|
||||||
-DTBB_ENABLE_IPO=OFF
|
-DTBB_ENABLE_IPO=OFF
|
||||||
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=OFF
|
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=OFF
|
||||||
-DCMAKE_POSITION_INDEPENDENT_CODE=ON
|
-DCMAKE_POSITION_INDEPENDENT_CODE=ON
|
||||||
|
|||||||
@@ -0,0 +1,132 @@
|
|||||||
|
# Keyboard Shortcuts
|
||||||
|
|
||||||
|
## Why it exists
|
||||||
|
|
||||||
|
Key events arrive in several windows (the main frame's char hook, the 3D canvases, the
|
||||||
|
gizmo manager and the object list), and the same keys are shown again in menu labels,
|
||||||
|
toolbar tooltips, gizmo names and the shortcuts dialog. The registry is the one table all
|
||||||
|
of them read. Each binding is defined once; dispatchers look key events up there, labels
|
||||||
|
are derived from it, and a change the user makes updates all of them.
|
||||||
|
|
||||||
|
## Data model
|
||||||
|
|
||||||
|
`KeyChord` (`src/slic3r/GUI/KeyChord.hpp`) is one key press: the key code as
|
||||||
|
`wxEVT_KEY_DOWN` reports it, plus the `wxMOD_*` modifiers held with it. It has two
|
||||||
|
text forms. The canonical one (`Ctrl+Shift+S`) is platform-neutral and doubles as the wx
|
||||||
|
accelerator string and the config format. The display one uses translated modifier
|
||||||
|
names and the command and option glyphs on macOS. `KeyChord::from_event()` turns any wx
|
||||||
|
key event into the same key code and modifiers, so a chord recorded in the dialog is
|
||||||
|
equal to the chord a dispatcher builds from the key press.
|
||||||
|
|
||||||
|
`Shortcut` is the enum of every user-facing binding. `shortcut_table` in
|
||||||
|
`src/slic3r/GUI/Shortcuts.cpp` gives each one a config key, a description, a context
|
||||||
|
mask, a default chord, a `repeatable` flag and a `modifier_variants` flag, in the order
|
||||||
|
the dialog lists them; a `static_assert` keeps the table and the enum in step.
|
||||||
|
|
||||||
|
`ShortcutRegistry` overlays the user's overrides on the defaults and keeps a
|
||||||
|
chord-to-shortcut index for lookups. It reads and writes the `shortcuts` section of
|
||||||
|
`AppConfig`. Only overrides are stored, so a default can change between releases
|
||||||
|
without touching anyone's config; `none` records a shortcut the user unbound.
|
||||||
|
|
||||||
|
## Contexts
|
||||||
|
|
||||||
|
A key press is looked up in the context of the window that received it.
|
||||||
|
|
||||||
|
| Context | Dispatcher | Examples |
|
||||||
|
|--------------|-----------------------------------------------------------|-------------------------------|
|
||||||
|
| `Global` | `MainFrame`'s `wxEVT_CHAR_HOOK`, before any child sees it | New project, camera views |
|
||||||
|
| `Plater` | `GLCanvas3D` of the 3D and assembly views | Arrange, gizmo activation |
|
||||||
|
| `Preview` | `GLCanvas3D` of the G-code preview | One-layer mode, jump to layer |
|
||||||
|
| `ObjectList` | the object list | Copy, delete, auto drop |
|
||||||
|
| `Painting` | `GLGizmosManager` while a painting gizmo is open | Circle, sphere, fill tools |
|
||||||
|
|
||||||
|
A shortcut can belong to several contexts, which is how copy and paste are a single
|
||||||
|
binding for the canvas and the object list. Two shortcuts can share a chord when their
|
||||||
|
contexts do not overlap; `C` is the cut gizmo in the 3D view, the G-code window in the
|
||||||
|
preview and the circle tool while painting. A Global chord is dispatched before every
|
||||||
|
other context, so the dialog treats it as conflicting with all of them.
|
||||||
|
|
||||||
|
A Global shortcut has to include Ctrl or Alt or use a key that types nothing, since a
|
||||||
|
bare printable key in the frame hook would swallow that character in every text field.
|
||||||
|
The dialog refuses such chords and `ShortcutRegistry::load()` drops them from the config.
|
||||||
|
Space counts as typing. The speed dial's default is the one bare Space, and
|
||||||
|
`MainFrame` leaves it to a focused control that uses Space itself (text fields, buttons,
|
||||||
|
combo boxes), so it opens the dial from the canvases and the tab strip only.
|
||||||
|
|
||||||
|
## Which event a chord matches
|
||||||
|
|
||||||
|
Letters, digits and special keys match on `wxEVT_KEY_DOWN`. Its key codes do not depend
|
||||||
|
on the keyboard layout: the key labelled `Q` on an AZERTY keyboard and the key in the
|
||||||
|
same position under a Cyrillic layout both report `Q`. Numpad keys fold onto their main
|
||||||
|
keyboard equivalents, so `Ctrl+1` and `Ctrl+Numpad 1` are one binding.
|
||||||
|
|
||||||
|
Punctuation matches on `wxEVT_CHAR`, because only the char event knows which character
|
||||||
|
a key produced under the active layout. `+` is Shift and `=` on a US keyboard and a key
|
||||||
|
of its own on a German one, and the binding means the character in both cases. The
|
||||||
|
canvas looks a key up on key-down first and, when nothing matched, once more on the char
|
||||||
|
event, for punctuation chords only. The dialog records chords the same way: a printable
|
||||||
|
non-alphanumeric key pressed with nothing but Shift is taken from the char event that
|
||||||
|
follows.
|
||||||
|
|
||||||
|
wxGTK does not report key auto-repeat, so the canvases share one record of the keys
|
||||||
|
seen going down and swallow the repeats of every shortcut not marked `repeatable`. Zoom
|
||||||
|
and undo repeat, for example; a toggle such as Tab does not. The record is shared because
|
||||||
|
a shortcut can move the focus to another canvas while its key is still held; a key
|
||||||
|
released while no canvas had the focus is dropped on the next press.
|
||||||
|
|
||||||
|
A few shortcuts have `modifier_variants`: Shift or Ctrl added to their binding selects a
|
||||||
|
step of the same action (1 mm and camera-space moves of the selection, five-step slider
|
||||||
|
moves). Only a binding without Shift or Ctrl of its own has steps, so no two bindings
|
||||||
|
share one. `ShortcutRegistry::match()` looks the exact chord up first and only then, when
|
||||||
|
nothing is bound to it, looks for such a shortcut whose binding is the chord minus those
|
||||||
|
modifiers, reporting which were added; a binding on Ctrl+Shift+key therefore wins over
|
||||||
|
the combined step. The Shift and Ctrl steps themselves are reserved. `step_owner()` names
|
||||||
|
the shortcut they belong to, the capture dialog refuses to assign them, and
|
||||||
|
`conflicts()` reports exact chords only. A binding made before its key became a stepping
|
||||||
|
key keeps its chord and shadows that one step. A move or rotation of the selection
|
||||||
|
started from the keyboard runs until the key that started it is released, or the
|
||||||
|
canvas loses focus, so a held key is one undo step.
|
||||||
|
|
||||||
|
## Labels
|
||||||
|
|
||||||
|
Menu labels, toolbar tooltips, gizmo names, the context menu and the shortcuts dialog
|
||||||
|
read the registry, so a rebinding shows up in all of them. Each tracked menu item keeps
|
||||||
|
its base label; `MainFrame::update_shortcut_labels()` appends the current binding
|
||||||
|
again after an edit, which also installs the new wx accelerator.
|
||||||
|
|
||||||
|
A chord that is unsafe as a menu accelerator, meaning a bare printable key, is appended
|
||||||
|
to the label as plain text so the menu cannot take it away from text fields. The macOS
|
||||||
|
edit menu shows its clipboard and undo entries that way, because a system-menu key
|
||||||
|
equivalent for Cmd+C would run instead of the text field's own copy.
|
||||||
|
|
||||||
|
On macOS the object list receives no key events at all, so its bindings are installed as
|
||||||
|
a `wxAcceleratorTable`, regenerated from the registry after each edit.
|
||||||
|
|
||||||
|
## Editing
|
||||||
|
|
||||||
|
The shortcuts dialog has a page per context, each opening with a line that says when its
|
||||||
|
keys apply. A page lists the shortcuts under the headings of `section_table`, with the
|
||||||
|
fixed keys that cannot change (mouse buttons, the step modifiers, Esc, the digit keys
|
||||||
|
that pick a filament) sorted into the same sections. The mouse drag rows describe the
|
||||||
|
camera actions chosen in Preferences; their button opens Preferences > Control with that
|
||||||
|
option scrolled into view and focused, instead of editing a key.
|
||||||
|
Editing a row opens a capture dialog that records the next chord, names the shortcuts it
|
||||||
|
would take the chord from, and on confirmation unbinds those and binds this one.
|
||||||
|
Resetting a row asks the same question when its default is now held by another
|
||||||
|
shortcut, so a reset cannot leave two shortcuts on one chord. Each change is written to
|
||||||
|
the config at once and pushed to the menus, tooltips and accelerator tables through
|
||||||
|
`GUI_App::on_shortcuts_changed()`. The dialog opens from the Help menu and Preferences >
|
||||||
|
Control on the Global page, and from the `?` key on the page of the view that received it.
|
||||||
|
|
||||||
|
## Adding a shortcut
|
||||||
|
|
||||||
|
1. Add the enum value to `Shortcut` and its row to `shortcut_table`, in the position
|
||||||
|
the dialog should list it; the row's section heading is the `section_table` entry
|
||||||
|
above it, so a new section needs an entry there too. Pick a default that does not
|
||||||
|
collide inside its contexts; the `[Shortcuts]` tests check every default against the
|
||||||
|
others.
|
||||||
|
2. Handle it in the dispatcher of its context: `MainFrame::handle_global_shortcut`,
|
||||||
|
`GLCanvas3D::handle_shortcut`, `ObjectList::dispatch_shortcut`, or a gizmo's
|
||||||
|
`on_tool_shortcut`. A gizmo that opens on a key sets `m_shortcut` in its constructor.
|
||||||
|
3. Where the UI shows the key, ask the registry (`display()` for tooltips,
|
||||||
|
`accelerator()` for menu labels); no label holds a literal key name.
|
||||||
@@ -125,6 +125,7 @@ src/slic3r/GUI/ThermalPreconditioningDialog.hpp
|
|||||||
src/slic3r/GUI/Jobs/SLAImportJob.cpp
|
src/slic3r/GUI/Jobs/SLAImportJob.cpp
|
||||||
src/slic3r/GUI/Jobs/UpgradeNetworkJob.cpp
|
src/slic3r/GUI/Jobs/UpgradeNetworkJob.cpp
|
||||||
src/slic3r/GUI/AboutDialog.cpp
|
src/slic3r/GUI/AboutDialog.cpp
|
||||||
|
src/slic3r/GUI/ActionRegistry.cpp
|
||||||
src/slic3r/GUI/AMSMaterialsSetting.cpp
|
src/slic3r/GUI/AMSMaterialsSetting.cpp
|
||||||
src/slic3r/GUI/ExtrusionCalibration.cpp
|
src/slic3r/GUI/ExtrusionCalibration.cpp
|
||||||
src/slic3r/GUI/AmsMappingPopup.cpp
|
src/slic3r/GUI/AmsMappingPopup.cpp
|
||||||
@@ -159,6 +160,7 @@ src/slic3r/GUI/SelectMachinePop.cpp
|
|||||||
src/slic3r/GUI/StatusPanel.cpp
|
src/slic3r/GUI/StatusPanel.cpp
|
||||||
src/slic3r/GUI/Monitor.cpp
|
src/slic3r/GUI/Monitor.cpp
|
||||||
src/slic3r/GUI/MsgDialog.cpp
|
src/slic3r/GUI/MsgDialog.cpp
|
||||||
|
src/slic3r/GUI/NativeCommands.cpp
|
||||||
src/slic3r/GUI/NotificationManager.hpp
|
src/slic3r/GUI/NotificationManager.hpp
|
||||||
src/slic3r/GUI/NotificationManager.cpp
|
src/slic3r/GUI/NotificationManager.cpp
|
||||||
src/slic3r/GUI/ObjectDataViewModel.cpp
|
src/slic3r/GUI/ObjectDataViewModel.cpp
|
||||||
@@ -179,6 +181,8 @@ src/slic3r/GUI/PublishDialog.cpp
|
|||||||
src/slic3r/GUI/PublishSettingsDialog.cpp
|
src/slic3r/GUI/PublishSettingsDialog.cpp
|
||||||
src/slic3r/GUI/SavePresetDialog.cpp
|
src/slic3r/GUI/SavePresetDialog.cpp
|
||||||
src/slic3r/GUI/Search.cpp
|
src/slic3r/GUI/Search.cpp
|
||||||
|
src/slic3r/GUI/SettingsIndex.cpp
|
||||||
|
src/slic3r/GUI/SpeedDialDialog.cpp
|
||||||
src/slic3r/GUI/Selection.cpp
|
src/slic3r/GUI/Selection.cpp
|
||||||
src/slic3r/GUI/SelectMachine.cpp
|
src/slic3r/GUI/SelectMachine.cpp
|
||||||
src/slic3r/GUI/PrePrintChecker.cpp
|
src/slic3r/GUI/PrePrintChecker.cpp
|
||||||
@@ -246,6 +250,7 @@ src/slic3r/GUI/TroubleshootDialog.cpp
|
|||||||
src/slic3r/Utils/3DPrinterOS.cpp
|
src/slic3r/Utils/3DPrinterOS.cpp
|
||||||
src/slic3r/Utils/AstroBox.cpp
|
src/slic3r/Utils/AstroBox.cpp
|
||||||
src/slic3r/Utils/Duet.cpp
|
src/slic3r/Utils/Duet.cpp
|
||||||
|
src/slic3r/Utils/UltiMaker.cpp
|
||||||
src/slic3r/Utils/FlashAir.cpp
|
src/slic3r/Utils/FlashAir.cpp
|
||||||
src/slic3r/Utils/MKS.cpp
|
src/slic3r/Utils/MKS.cpp
|
||||||
src/slic3r/Utils/Moonraker.cpp
|
src/slic3r/Utils/Moonraker.cpp
|
||||||
@@ -295,3 +300,5 @@ src/slic3r/GUI/CAD/DesignPanel.cpp
|
|||||||
src/slic3r/GUI/CAD/SketchInlineEditor.cpp
|
src/slic3r/GUI/CAD/SketchInlineEditor.cpp
|
||||||
src/slic3r/GUI/Gizmos/GLGizmoPrimitive.cpp
|
src/slic3r/GUI/Gizmos/GLGizmoPrimitive.cpp
|
||||||
src/slic3r/GUI/Gizmos/GLGizmoSketch.cpp
|
src/slic3r/GUI/Gizmos/GLGizmoSketch.cpp
|
||||||
|
src/slic3r/GUI/KeyChord.cpp
|
||||||
|
src/slic3r/GUI/Shortcuts.cpp
|
||||||
|
|||||||
@@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M14.5,1.5v12a1,1,0,0,1-1,1H1.5a1,1,0,0,1-1-1V1.5a1,1,0,0,1,1-1h12a1,1,0,0,1,1,1Z" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/><polyline points="4,5 6.5,7.5 4,10" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/><line x1="8" y1="10" x2="11" y2="10" style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/></svg>
|
||||||
|
After Width: | Height: | Size: 524 B |
@@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M11.5,5.5v5c0,.55-.45,1-1,1H1.5c-.55,0-1-.45-1-1V1.5C.5.95.95.5,1.5.5h5M3.5,6.5v2h2l5.59-5.59c.55-.55.55-1.45,0-2s-1.45-.55-2,0L3.5,6.5Z" style="fill:none; stroke:#949494; stroke-linecap:square; stroke-linejoin:round;"/></svg>
|
||||||
|
After Width: | Height: | Size: 340 B |
|
After Width: | Height: | Size: 263 KiB |
|
After Width: | Height: | Size: 44 KiB |
|
After Width: | Height: | Size: 242 KiB |
|
After Width: | Height: | Size: 195 KiB |
|
After Width: | Height: | Size: 242 KiB |
|
After Width: | Height: | Size: 130 KiB |
|
After Width: | Height: | Size: 175 KiB |
|
After Width: | Height: | Size: 233 KiB |
|
After Width: | Height: | Size: 82 KiB |
|
After Width: | Height: | Size: 142 KiB |
|
After Width: | Height: | Size: 174 KiB |
|
After Width: | Height: | Size: 130 KiB |
|
After Width: | Height: | Size: 301 KiB |
|
After Width: | Height: | Size: 166 KiB |
|
After Width: | Height: | Size: 123 KiB |
|
After Width: | Height: | Size: 235 KiB |
@@ -0,0 +1,155 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @Ender-2 Pro-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "xXPIfJOKtSIkbgSZ",
|
||||||
|
"filament_id": "OFGwZmgS",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"50%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "80",
|
||||||
|
"customized_plate_temp_initial_layer": "80",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-2 Pro 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,126 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @Ender-3 S1 Plus-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "41fKjFexWC3Zh7XZ",
|
||||||
|
"filament_id": "OFGwZmgS",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1.2"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; Filament gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 S1 Plus 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,126 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @Ender-3 S1 Pro-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "SDigCIbuTDRn8b96",
|
||||||
|
"filament_id": "OFGwZmgS",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1.2"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; Filament gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 S1 Pro 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,126 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @Ender-3 S1 Sonic-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "jYdpNiDMaOz2Ay6R",
|
||||||
|
"filament_id": "OFGwZmgS",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1.2"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 S1 Sonic 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,126 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @Ender-3 S1-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "5kp6VbwvXPo7Lvzg",
|
||||||
|
"filament_id": "OFGwZmgS",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1.2"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; Filament gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 S1 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,151 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @Ender-3 V3 KE-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "XUzmyFDwpqu4Kfjh",
|
||||||
|
"filament_id": "OFGwZmgS",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.08"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0.4"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Normal Lift"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; Filament gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
|
||||||
|
"pressure_advance": "0.05",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 V3 KE 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,146 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @Ender-3 V3 Plus-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "2bvhLTGnyzWCVkPy",
|
||||||
|
"filament_id": "OFGwZmgS",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.08"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.926"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"100%"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"0.8"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0.4"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Normal Lift"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 V3 Plus 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,172 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @Ender-3 V3-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "MQURrCD6wSxqa1jP",
|
||||||
|
"filament_id": "OFGwZmgS",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.08"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.97"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "100",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "1",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "100",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "100",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_shrinkage_compensation_z": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,230],[10.0,240],[20.0,250]]",
|
||||||
|
"pressure_advance": "0.046",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 V3 0.4 nozzle",
|
||||||
|
"Creality Ender-3 V3 0.6 nozzle",
|
||||||
|
"Creality Ender-3 V3 0.8 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,138 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @Ender-3-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "H4UaUhKIsHDvC918",
|
||||||
|
"filament_id": "OFGwZmgS",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; Filament gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,135 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @Ender-5 S1 Sonic-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "p6IjY3IqwpTbVeUP",
|
||||||
|
"filament_id": "OFGwZmgS",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.24"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"0.8"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0.2"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Normal Lift"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-5 S1 Sonic 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,135 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @Ender-5 S1-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "JJLc8iPdvZucHYiJ",
|
||||||
|
"filament_id": "OFGwZmgS",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.24"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"0.8"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0.2"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Normal Lift"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-5 S1 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,166 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @Sermoon D3 Pro-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "iYMDiv64la5GboAA",
|
||||||
|
"filament_id": "OFGwZmgS",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.08"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"280"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "60",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "80",
|
||||||
|
"customized_plate_temp_initial_layer": "80",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"dont_slow_down_outer_wall": "0",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_long_retractions_when_cut": "nil",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_ramming_parameters": "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_retraction_distances_when_cut": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_shrinkage_compensation_z": "100%",
|
||||||
|
"filament_stamping_distance": "0",
|
||||||
|
"filament_stamping_loading_speed": "0",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"idle_temperature": "0",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
|
||||||
|
"pellet_flow_coefficient": "0.4157",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Sermoon D3 Pro 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,160 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @Sermoon M300-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "afINvBBB1U1PjGVB",
|
||||||
|
"filament_id": "OFGwZmgS",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.08"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"90%"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"280"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "100",
|
||||||
|
"customized_plate_temp_initial_layer": "100",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Sermoon M300 0.4 nozzle",
|
||||||
|
"Creality Sermoon M300 0.6 nozzle",
|
||||||
|
"Creality Sermoon M300 0.8 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,188 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-Nylon @Ender-3 V3 Plus-all",
|
||||||
|
"inherits": "fdm_filament_pa",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "JOqqaEHv9emSaO58",
|
||||||
|
"filament_id": "OFvLppPU",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"close_fan_the_first_x_layers": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"52"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.12"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.98"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"50%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_for_layer_cooling": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"4"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 V3 Plus 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,167 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @CR-10 SE-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "ca0t7XsRrFpxcL7a",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.24"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"9"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"100%"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"0.8"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0.4"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Normal Lift"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"25%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality CR-10 SE 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,133 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @CR-10 Smart Pro-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "iB29j2vvnyfpO4tk",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.3"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.98"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"50%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"customized_plate_temp": "70",
|
||||||
|
"customized_plate_temp_initial_layer": "70",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality CR-10 Smart Pro 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,133 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @CR-10-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "LHxnOzAAJr1mk5GK",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.3"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.98"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"50%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"customized_plate_temp": "70",
|
||||||
|
"customized_plate_temp_initial_layer": "70",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality CR-10 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,170 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @CR-M4 SE-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "N9vgkspyIr8EV1T8",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"close_fan_the_first_x_layers": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"22"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.24"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.9"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"0.8"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"0.05"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0.2"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Normal Lift"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"\" \""
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"\" \""
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "1",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "70",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "70",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_shrinkage_compensation_z": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,230],[5.0,240],[8.0,250]]",
|
||||||
|
"pressure_advance": "0.08",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality CR-M4 SE 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,135 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @Ender-2 Pro-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "F7h6B3GqsyWLIXWk",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.27"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"50%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-2 Pro 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,144 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @Ender-3 S1 Plus-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "ukQaApwo1Kafy1of",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.27"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1.2"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"25%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 S1 Plus 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,144 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @Ender-3 S1 Pro-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "YzCFzg5CFVXkP5mI",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.27"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1.2"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"25%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 S1 Pro 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,147 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @Ender-3 S1 Sonic-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "nhmw2HhDlNRvvccd",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.27"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1.2"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"25%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 S1 Sonic 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,144 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @Ender-3 S1-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "HOXafIaVQNYa5uzz",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.27"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1.2"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"25%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 S1 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,131 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @Ender-3 V2-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "KOU7rizOewXtUGdS",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.24"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.98"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"50%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode\n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "70",
|
||||||
|
"customized_plate_temp_initial_layer": "70",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.4",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 V2 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,142 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @Ender-3 V3 KE-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "RtNydGhtx6FMjQDr",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.23"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"9"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"25%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "1",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "70",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "70",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
|
||||||
|
"pressure_advance": "0.08",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 V3 KE 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,169 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @Ender-3 V3 Plus-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "Z3uXiHTYNnlPwfXX",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.23"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"9"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"100%"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"0.8"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0.4"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Normal Lift"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"25%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "70",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "70",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 V3 Plus 0.4 nozzle",
|
||||||
|
"Creality Ender-3 V3 Plus 0.6 nozzle",
|
||||||
|
"Creality Ender-3 V3 Plus 0.8 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,156 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @Ender-3 V3-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "jLTxg3JhZaoBjPDd",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.23"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"25"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1.2"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"235"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"235"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"25%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "100",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "50",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "50",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 V3 0.4 nozzle",
|
||||||
|
"Creality Ender-3 V3 0.6 nozzle",
|
||||||
|
"Creality Ender-3 V3 0.8 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,138 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @Ender-3-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "XtRCnvDgIt3woTfm",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.27"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"25%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,165 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @Ender-5 S1 Sonic-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "kEN1rd7J0bDhpXLB",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.27"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1.5"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0.2"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Normal Lift"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"25%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-5 S1 Sonic 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,162 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @Ender-5 S1-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "SXeN7LY4p9TpzIfK",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.27"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1.5"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0.2"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Normal Lift"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"25%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-5 S1 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,151 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @Sermoon D3 Pro-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "PhFJ45TOClwggKYD",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"close_fan_the_first_x_layers": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"105"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"105"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.23"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"7"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"25%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"110"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "80",
|
||||||
|
"customized_plate_temp_initial_layer": "80",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"dont_slow_down_outer_wall": "0",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_long_retractions_when_cut": "nil",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_ramming_parameters": "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_retraction_distances_when_cut": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_shrinkage_compensation_z": "100%",
|
||||||
|
"filament_stamping_distance": "0",
|
||||||
|
"filament_stamping_loading_speed": "0",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"idle_temperature": "0",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
|
||||||
|
"pellet_flow_coefficient": "0.4157",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Sermoon D3 Pro 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,132 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @Sermoon D3-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "Pw1DtBsgpbzj8P0k",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.98"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"190"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"50%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "70",
|
||||||
|
"customized_plate_temp_initial_layer": "70",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
|
||||||
|
"pressure_advance": "0.05",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Sermoon D3 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,156 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @Sermoon M300-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "WaYzXCaD9MuLDXsX",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.24"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"90%"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"10%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "70",
|
||||||
|
"customized_plate_temp_initial_layer": "70",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_shrinkage_compensation_z": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[0.5,240],[1.0,240],[1.2,250]]",
|
||||||
|
"pressure_advance": "0.07",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Sermoon M300 0.4 nozzle",
|
||||||
|
"Creality Sermoon M300 0.6 nozzle",
|
||||||
|
"Creality Sermoon M300 0.8 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,129 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @Sermoon V1 Pro-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "yPw0Q8cZoH0z5Q5W",
|
||||||
|
"filament_id": "OF3WQaKK",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.98"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"190"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"50%"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "70",
|
||||||
|
"customized_plate_temp_initial_layer": "70",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
|
||||||
|
"pressure_advance": "0.05",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Sermoon V1 Pro 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,151 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @CR-10-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "gRYsvflqQ8IIyNOu",
|
||||||
|
"filament_id": "OFp4ETDP",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"200"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"200"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode "
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "60",
|
||||||
|
"customized_plate_temp_initial_layer": "60",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"dont_slow_down_outer_wall": "0",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_long_retractions_when_cut": "nil",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_ramming_parameters": "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_retraction_distances_when_cut": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_shrinkage_compensation_z": "100%",
|
||||||
|
"filament_stamping_distance": "0",
|
||||||
|
"filament_stamping_loading_speed": "0",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"idle_temperature": "0",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
|
||||||
|
"pellet_flow_coefficient": "0.4157",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality CR-10 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,146 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @CR-M4 SE-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "tABggke8tUaNmEEh",
|
||||||
|
"filament_id": "OFp4ETDP",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"22"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.9"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"0.8"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"0.05"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0.2"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Normal Lift"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"95%"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"\" \""
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"\" \""
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "1",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "60",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "60",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_shrinkage_compensation_z": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,200],[5.0,210],[8.0,220]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality CR-M4 SE 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,126 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @Ender-2 Pro-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "pyic9IqsyOiafceu",
|
||||||
|
"filament_id": "OFp4ETDP",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"210"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"210"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode\n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-2 Pro 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,123 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @Ender-3 S1 Plus-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "DyGKfjo621EQ9y3H",
|
||||||
|
"filament_id": "OFp4ETDP",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1.2"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"190"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"190"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 S1 Plus 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,123 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @Ender-3 S1 Pro-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "CgGlQJsaZQNxVOTe",
|
||||||
|
"filament_id": "OFp4ETDP",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1.2"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"190"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"190"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 S1 Pro 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,126 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @Ender-3 S1 Sonic-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "WsUax8HKz582lvgP",
|
||||||
|
"filament_id": "OFp4ETDP",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1.2"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"190"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"190"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 S1 Sonic 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,123 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @Ender-3 S1-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "q2a9vySJTktLFns3",
|
||||||
|
"filament_id": "OFp4ETDP",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1.2"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"190"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"190"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 S1 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,128 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @Ender-3 V2-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "0w38xo4i4Hsv1NGO",
|
||||||
|
"filament_id": "OFp4ETDP",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "100",
|
||||||
|
"customized_plate_temp": "60",
|
||||||
|
"customized_plate_temp_initial_layer": "60",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.5,200],[7.0,240]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 V2 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,151 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @Ender-3 V3 KE-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "SpUnsDch11ry1O8N",
|
||||||
|
"filament_id": "OFp4ETDP",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "1",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "50",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "50",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
|
||||||
|
"pressure_advance": "0.048",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 V3 KE 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||