mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-09-16 13:32:44 +00:00
Run every profile maintenance job from one tool (#15726)
* Run every profile maintenance job from one tool orca_id_tool.py becomes orca_profile_tool.py, and orca_extra_profile_check.py and orca_filament_lib.py fold into it as subcommands: check, generate-id, fix, trim, update-index and update-snapshot. The three scripts already overlapped -- the checker imported half of its rules from the id tool, which in turn kept a copy-pasted set of output helpers to avoid the resulting import cycle -- while disagreeing on how a vendor is enumerated, how a JSON file is read and what the exit code means. One file settles all three. check, normalize, trim and update-index reproduce their predecessors exactly; normalize and update-index were diffed byte-for-byte against the old scripts over a copy of the whole tree. Deliberate changes: the compatible-printers check no longer switches itself off when --check-materials is passed, an error exits 1 rather than -1, update-index honours --profile-type and reports a profile it cannot place instead of dropping it from the index, fix and update-index gained --dry-run, trim keeps an unindexed file some surviving profile still inherits from, and vendors are enumerated as directories with an index -- which is why blacklist.json, a data file that an unscoped index rebuild once wrote four empty list sections into, loses them here and will not collect them again. The dead rename_filament_system() helper is gone. The suite under scripts/tests now covers the maintenance commands too, and CI runs it; nothing there ran in CI before. No shipped profile data changes apart from those four keys. * update vendor index files with "python3 ./scripts/orca_profile_tool.py update-index" and "python3 ./scripts/orca_profile_tool.py normalize"
This commit is contained in:
@@ -9,8 +9,9 @@ on:
|
|||||||
- release/*
|
- release/*
|
||||||
paths:
|
paths:
|
||||||
- 'resources/profiles/**'
|
- 'resources/profiles/**'
|
||||||
# The extra JSON check also validates resources/printers/bambu_filament_ids.json,
|
# orca_profile_tool.py also validates resources/printers/bambu_filament_ids.json, and
|
||||||
# and lives in scripts/, so a PR touching only those must still run this workflow.
|
# both it and its tests live in scripts/, so a PR touching only those must still run
|
||||||
|
# this workflow.
|
||||||
- 'resources/printers/**'
|
- 'resources/printers/**'
|
||||||
- 'scripts/**'
|
- 'scripts/**'
|
||||||
- ".github/workflows/check_profiles.yml"
|
- ".github/workflows/check_profiles.yml"
|
||||||
@@ -36,12 +37,23 @@ jobs:
|
|||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v7
|
uses: actions/checkout@v7
|
||||||
|
|
||||||
- name: Run extra JSON check
|
# Deliberately not continue-on-error, unlike every check below: if the tool itself is
|
||||||
id: extra_json_check
|
# broken, nothing it then reports about the profiles is worth reading.
|
||||||
|
- name: Run the profile tool's own unit tests
|
||||||
|
run: python3 -m unittest discover -s scripts/tests -t scripts
|
||||||
|
|
||||||
|
# What the validator below cannot see. It loads the tree the way the slicer does, so
|
||||||
|
# it never notices a profile no <vendor>.json indexes, a preset name two files claim,
|
||||||
|
# an id that is not the mint of its own triple, or a file that normalize and
|
||||||
|
# update-index would still rewrite.
|
||||||
|
# The step id is the handle the PR comment and the failure gate below use; renaming it
|
||||||
|
# silently disables them.
|
||||||
|
- name: Check profiles (orca_profile_tool.py)
|
||||||
|
id: profile_tool
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
run: |
|
run: |
|
||||||
set +e
|
set +e
|
||||||
python3 ./scripts/orca_extra_profile_check.py 2>&1 | tee ${{ runner.temp }}/extra_json_check.log
|
python3 ./scripts/orca_profile_tool.py check 2>&1 | tee ${{ runner.temp }}/profile_tool.log
|
||||||
exit ${PIPESTATUS[0]}
|
exit ${PIPESTATUS[0]}
|
||||||
|
|
||||||
# download
|
# download
|
||||||
@@ -186,7 +198,7 @@ jobs:
|
|||||||
echo "${{ github.event.pull_request.number }}" > ${{ runner.temp }}/profile-check-results/pr_number.txt
|
echo "${{ github.event.pull_request.number }}" > ${{ runner.temp }}/profile-check-results/pr_number.txt
|
||||||
|
|
||||||
- name: Prepare comment artifact
|
- name: Prepare comment artifact
|
||||||
if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_slice.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
|
if: ${{ always() && github.event_name == 'pull_request' && (steps.profile_tool.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_slice.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
|
||||||
run: |
|
run: |
|
||||||
{
|
{
|
||||||
# Marker matched by check_profiles_comment.yml to delete prior comments.
|
# Marker matched by check_profiles_comment.yml to delete prior comments.
|
||||||
@@ -194,11 +206,11 @@ jobs:
|
|||||||
echo "## :x: Profile Validation Errors"
|
echo "## :x: Profile Validation Errors"
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
if [ "${{ steps.extra_json_check.outcome }}" = "failure" ]; then
|
if [ "${{ steps.profile_tool.outcome }}" = "failure" ]; then
|
||||||
echo "### Extra JSON Check Failed"
|
echo "### Profile Check Failed (orca_profile_tool.py)"
|
||||||
echo ""
|
echo ""
|
||||||
echo '```'
|
echo '```'
|
||||||
head -c 30000 ${{ runner.temp }}/extra_json_check.log || echo "No output captured"
|
head -c 30000 ${{ runner.temp }}/profile_tool.log || echo "No output captured"
|
||||||
echo '```'
|
echo '```'
|
||||||
echo ""
|
echo ""
|
||||||
fi
|
fi
|
||||||
@@ -240,7 +252,7 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
echo "---"
|
echo "---"
|
||||||
echo "*Please fix the above errors and push a new commit.*"
|
echo '*Fix the errors above and push a new commit. To reproduce this run locally: `scripts/check_profile.sh`, or `scripts\check_profile.bat` on Windows.*'
|
||||||
} > ${{ runner.temp }}/profile-check-results/pr_comment.md
|
} > ${{ runner.temp }}/profile-check-results/pr_comment.md
|
||||||
|
|
||||||
- name: Upload comment artifact
|
- name: Upload comment artifact
|
||||||
@@ -252,7 +264,8 @@ jobs:
|
|||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
|
||||||
- name: Fail if any check failed
|
- name: Fail if any check failed
|
||||||
if: ${{ always() && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_slice.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
|
if: ${{ always() && (steps.profile_tool.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_slice.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
|
||||||
run: |
|
run: |
|
||||||
echo "One or more profile checks failed. See above for details."
|
echo "One or more profile checks failed; see the step logs above."
|
||||||
|
echo 'Reproduce the whole run locally with scripts/check_profile.sh (scripts\check_profile.bat on Windows).'
|
||||||
exit 1
|
exit 1
|
||||||
|
|||||||
+74
-75
@@ -9,7 +9,7 @@ OrcaFilamentLibrary (OFL), Qidi, or Snapmaker bundle. The granularity is the nam
|
|||||||
not the brand behind it: `AAA PLA Lite` and `AAA PLA Pro` are two filaments with two ids, not
|
not the brand behind it: `AAA PLA Lite` and `AAA PLA Pro` are two filaments with two ids, not
|
||||||
variants of one.
|
variants of one.
|
||||||
|
|
||||||
**How it is generated:** an id is computed, never invented. `scripts/orca_id_tool.py`
|
**How it is generated:** an id is computed, never invented. `scripts/orca_profile_tool.py`
|
||||||
mints it as a deterministic hash of the product's identity — the triple
|
mints it as a deterministic hash of the product's identity — the triple
|
||||||
`(filament_vendor, filament_type, filament name)`, where the filament name is the preset name
|
`(filament_vendor, filament_type, filament name)`, where the filament name is the preset name
|
||||||
with its `@...` variant suffix stripped — producing an 8-character `OF*` code that is the
|
with its `@...` variant suffix stripped — producing an 8-character `OF*` code that is the
|
||||||
@@ -34,7 +34,7 @@ This page is the rule for authoring `filament_id` in system profiles
|
|||||||
|
|
||||||
> [!IMPORTANT]
|
> [!IMPORTANT]
|
||||||
> **Never write a `filament_id` value by hand.** A new filament gets its id from
|
> **Never write a `filament_id` value by hand.** A new filament gets its id from
|
||||||
> `python scripts/orca_id_tool.py --generate`; one already in the tree has one — inherit it.
|
> `python scripts/orca_profile_tool.py generate-id`; one already in the tree has one — inherit it.
|
||||||
|
|
||||||
## The design, in two pieces
|
## The design, in two pieces
|
||||||
|
|
||||||
@@ -160,8 +160,8 @@ key needed). Tuning a generic material → **join the OrcaFilamentLibrary filame
|
|||||||
different product by rule 5, so it then needs its own id.
|
different product by rule 5, so it then needs its own id.
|
||||||
5. **Ids follow the product identity.** The id is a pure function of the product triple
|
5. **Ids follow the product identity.** The id is a pure function of the product triple
|
||||||
`(filament_vendor, filament_type, filament name)`, so correcting any of them re-mints the id
|
`(filament_vendor, filament_type, filament name)`, so correcting any of them re-mints the id
|
||||||
**by design**, applied by `--generate` (preview with `--dry-run`, confine with `--vendor`) and
|
**by design**, applied by `generate-id` (preview with `--dry-run`, confine with `--vendor`)
|
||||||
gated by the `--update-snapshot` diff; the exact sequence is in the FAQ. Nothing forwards
|
and gated by the `update-snapshot` diff; the exact sequence is in the FAQ. Nothing forwards
|
||||||
the old value, so anything outside the tree that stored it — a device tray, a calibration
|
the old value, so anything outside the tree that stored it — a device tray, a calibration
|
||||||
record, a saved project — falls back to matching by filament type until the user re-selects
|
record, a saved project — falls back to matching by filament type until the user re-selects
|
||||||
the filament. Re-mint deliberately, and only to fix a genuinely wrong identity.
|
the filament. Re-mint deliberately, and only to fix a genuinely wrong identity.
|
||||||
@@ -170,7 +170,7 @@ key needed). Tuning a generic material → **join the OrcaFilamentLibrary filame
|
|||||||
## Minting — nobody invents ids
|
## Minting — nobody invents ids
|
||||||
|
|
||||||
New ids are deterministic, computed exactly like the `setting_id` precedent
|
New ids are deterministic, computed exactly like the `setting_id` precedent
|
||||||
(the `setting_id` half of `scripts/orca_id_tool.py`):
|
(the `setting_id` half of `scripts/orca_profile_tool.py generate-id`):
|
||||||
|
|
||||||
```text
|
```text
|
||||||
FILAMENT_ID_NAMESPACE = uuid5(setting-id NAMESPACE, "filament_id")
|
FILAMENT_ID_NAMESPACE = uuid5(setting-id NAMESPACE, "filament_id")
|
||||||
@@ -199,10 +199,10 @@ purely through inheritance from the OFL preset.
|
|||||||
Nothing but the triple feeds the mint — not the rest of the tree, not the snapshot, not what
|
Nothing but the triple feeds the mint — not the rest of the tree, not the snapshot, not what
|
||||||
another preset of the product happens to carry. Determined triple, determined id: one product
|
another preset of the product happens to carry. Determined triple, determined id: one product
|
||||||
carries one id and there is no second acceptable value for it, so any other value on a preset
|
carries one id and there is no second acceptable value for it, so any other value on a preset
|
||||||
is a mismatch `--check` reports and `--generate` pulls back. Two *different* products whose
|
is a mismatch `check` reports and `generate-id` pulls back. Two *different* products whose
|
||||||
triples mint the same base62 value would be a collision (a roughly 36-bit id space against a
|
triples mint the same base62 value would be a collision (a roughly 36-bit id space against a
|
||||||
few thousand products); nothing salts past it: `--check` reports it naming both products,
|
few thousand products); nothing salts past it: `check` reports it naming both products,
|
||||||
`--generate` refuses to write it, and the remedy is a rename so their triples differ. Where
|
`generate-id` refuses to write it, and the remedy is a rename so their triples differ. Where
|
||||||
two presets of one product would be AMS-ambiguous on a printer, the fix is likewise in the
|
two presets of one product would be AMS-ambiguous on a printer, the fix is likewise in the
|
||||||
profiles — make their `compatible_printers` disjoint (structure rule 3), retire the redundant
|
profiles — make their `compatible_printers` disjoint (structure rule 3), retire the redundant
|
||||||
preset, or, if they really are different products, give them different names so their triples
|
preset, or, if they really are different products, give them different names so their triples
|
||||||
@@ -212,15 +212,14 @@ Workflow for a new filament:
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# 1. Author the filament with NO filament_id key anywhere.
|
# 1. Author the filament with NO filament_id key anywhere.
|
||||||
python scripts/orca_id_tool.py --dry-run # 2. preview the ids — writes nothing
|
python scripts/orca_profile_tool.py generate-id --dry-run # 2. preview the ids — writes nothing
|
||||||
python scripts/orca_id_tool.py --generate # 3. apply them to the profile file(s)
|
python scripts/orca_profile_tool.py generate-id # 3. apply them to the profile file(s)
|
||||||
python scripts/orca_id_tool.py --update-snapshot # 4. record the new claims in the snapshot
|
python scripts/orca_profile_tool.py update-snapshot # 4. record the new claims in the snapshot
|
||||||
python scripts/orca_id_tool.py --check # 5. validate the filament_id state
|
python scripts/orca_profile_tool.py check # 5. validate — everything CI checks
|
||||||
python scripts/orca_extra_profile_check.py # 6. ...and everything else CI checks
|
# 6. Commit the profile edits together with scripts/filament_id_snapshot.json, for review.
|
||||||
# 7. Commit the profile edits together with scripts/filament_id_snapshot.json, for review.
|
|
||||||
```
|
```
|
||||||
|
|
||||||
`--generate` makes every filament's id equal the mint of its own
|
`generate-id` makes every filament's id equal the mint of its own
|
||||||
`(filament_vendor, filament_type, filament name)` triple: it inserts one where an instantiated
|
`(filament_vendor, filament_type, filament name)` triple: it inserts one where an instantiated
|
||||||
filament resolves none, and re-derives one that does not match. A preset that *inherits* a
|
filament resolves none, and re-derives one that does not match. A preset that *inherits* a
|
||||||
mismatching id is the one case left to the author — check 3b names it, and the fix is to inherit
|
mismatching id is the one case left to the author — check 3b names it, and the fix is to inherit
|
||||||
@@ -232,60 +231,63 @@ and machine preset of every vendor except BBL, which keeps its authoritative `G*
|
|||||||
`setting_id` from base profiles, and fixes the misspelled `settings_id` key — dropped, or, for
|
`setting_id` from base profiles, and fixes the misspelled `settings_id` key — dropped, or, for
|
||||||
BBL, whose ids have no formula to fall back on, restored under the correct name. It is idempotent and
|
BBL, whose ids have no formula to fall back on, restored under the correct name. It is idempotent and
|
||||||
byte-preserving (indentation, BOM, and line endings intact, every edited file re-parsed to fail
|
byte-preserving (indentation, BOM, and line endings intact, every edited file re-parsed to fail
|
||||||
loudly), and a no-op on a tree that already passes `scripts/orca_extra_profile_check.py` — the
|
loudly), and a no-op on a tree that already passes `check`.
|
||||||
check CI runs over both id kinds, of which `--check` is the `filament_id` half.
|
|
||||||
|
|
||||||
- `--filament-id` limits the run to `filament_id`.
|
- `--filament-id` limits the run to `filament_id`.
|
||||||
- `--setting-id` limits the run to `setting_id`. The two exclude each other; pass neither to
|
- `--setting-id` limits the run to `setting_id`. The two exclude each other; pass neither to
|
||||||
write both.
|
write both.
|
||||||
- `--vendor VENDOR` confines the run to that bundle; repeatable. The id is a function of the
|
- `--vendor VENDOR` confines the run to that bundle; repeatable. The id is a function of the
|
||||||
triple alone, so a narrowed run writes exactly what a full one would; `--check` reports
|
triple alone, so a narrowed run writes exactly what a full one would; `check` reports
|
||||||
whatever it left outside.
|
whatever it left outside.
|
||||||
- `--dry-run` reports what `--generate` would do and writes nothing; with no mode of its own it
|
- `--dry-run` reports what the run would do and writes nothing, so
|
||||||
implies `--generate`, so `--dry-run --vendor <Vendor>` previews just that bundle.
|
`generate-id --dry-run --vendor <Vendor>` previews just that bundle.
|
||||||
- `--profiles DIR` points the tooling at a different profile tree (default
|
- `--profiles DIR` points the tooling at a different profile tree (default
|
||||||
`resources/profiles`). `--check` and `--update-snapshot` read and write the sanctioned state of
|
`resources/profiles`). `check` and `update-snapshot` read and write the sanctioned state of
|
||||||
the tree they are given, so pointing them elsewhere needs `--snapshot PATH` for that tree too —
|
the tree they are given, so pointing them elsewhere needs `--snapshot PATH` for that tree too —
|
||||||
`scripts/filament_id_snapshot.json` describes `resources/profiles` and no other tree.
|
`scripts/filament_id_snapshot.json` describes `resources/profiles` and no other tree.
|
||||||
|
|
||||||
**Identity fixes need no separate mode.** `--generate` re-derives an id that no longer matches its
|
The tool's other commands maintain the tree around the ids: `fix` normalises profile files,
|
||||||
triple exactly the way it fills in a missing one, so a rename or a `filament_vendor` /
|
`trim` drops files no `<vendor>.json` list references, and `update-index` rebuilds those lists.
|
||||||
`filament_type` correction is just: fix the config, run `--generate` (confine it with `--vendor`,
|
They do not touch ids; `--help` documents them.
|
||||||
preview it with `--dry-run`), then `--update-snapshot` and review the diff.
|
|
||||||
|
**Identity fixes need no separate command.** `generate-id` re-derives an id that no longer matches
|
||||||
|
its triple exactly the way it fills in a missing one, so a rename or a `filament_vendor` /
|
||||||
|
`filament_type` correction is just: fix the config, run `generate-id` (confine it with
|
||||||
|
`--vendor`, preview it with `--dry-run`), then `update-snapshot` and review the diff.
|
||||||
|
|
||||||
If you skip the tooling, CI fails and prints the remedy: the expected id for your filament and
|
If you skip the tooling, CI fails and prints the remedy: the expected id for your filament and
|
||||||
the instruction to run `python scripts/orca_id_tool.py --generate`; once the id is minted, the
|
the instruction to run `python scripts/orca_profile_tool.py generate-id`; once the id is minted,
|
||||||
snapshot checks likewise point at `--update-snapshot` and tell you to commit the resulting
|
the snapshot checks likewise point at `update-snapshot` and tell you to commit the resulting
|
||||||
diff.
|
diff.
|
||||||
|
|
||||||
## Reserved namespaces — never mint or hand-write into
|
## Ids other systems compose
|
||||||
|
|
||||||
A **reserved namespace** is an id space no system profile may declare, because an external
|
Every filament profile carries a minted id, with no exceptions and no spellings held back for
|
||||||
catalog or a device protocol owns the values. None of them has an owning vendor: there is no
|
anyone. There is therefore no reserved namespace to respect and no bundle that owns one: an id
|
||||||
bundle — not even the one whose printers use the catalog — that may write one into a profile.
|
some other system composes for its own purposes is simply not the mint of a triple, so it
|
||||||
|
cannot be a system profile's `filament_id`, and the format check rejects it for that reason
|
||||||
|
alone — same error, same remedy, whoever wrote it.
|
||||||
|
|
||||||
| Space | Status | Rule |
|
Three such spaces exist around us, and are worth recognising so nobody mistakes one for an id
|
||||||
| --- | --- | --- |
|
to copy into a profile:
|
||||||
| `GF*` | Bambu AMS/RFID catalog | declarable by **nobody**, BBL included: Bambu's own ids live in the generated catalog map, never in a profile |
|
|
||||||
| `QD_*` | Qidi device protocol | declarable by **nobody**, Qidi included: the box composes these ids at runtime and they are not preset ids |
|
|
||||||
| `P` + 7 hex chars (case-insensitive), `"null"` | user-created custom filaments (`CreatePresetsDialog.cpp`) | never appears in system profiles |
|
|
||||||
|
|
||||||
The two device namespaces, in detail:
|
- **Bambu's `GF*` catalog.** Bambu's device / RFID / cloud catalog is external and opaque. Every
|
||||||
|
BBL filament mints an `OF` id from its triple like every other vendor's, and the
|
||||||
- **Bambu (`GF*`).** Bambu's device/RFID/cloud catalog is external and opaque, which is a
|
correspondence to Bambu's catalog ids lives in one generated file the app applies at the
|
||||||
reason to keep it out of the profiles rather than to let one bundle own it. Every BBL filament
|
printer boundary — the next section. Note that `GF` is a *prefix*, not a namespace the tree
|
||||||
mints an `OF` id from its triple like every other vendor's, and the correspondence to Bambu's
|
avoids: BBL's authoritative `setting_id` values include `GF`-prefixed ones, and
|
||||||
catalog ids lives in one generated file the app applies at the printer boundary — the next
|
`resources/profiles/blacklist.json` and `BBL/filament/filaments_color_codes.json` both
|
||||||
section. Nothing under `resources/profiles/**` carries a `GF*` id today and nothing can be
|
reference Bambu catalog ids by design. The rule is about `filament_id` and nothing else.
|
||||||
exempted, so a `GF*` id appearing anywhere in the tree is a mistake, whoever wrote it.
|
- **Qidi's `QD_*` protocol ids.** The Qidi box composes `QD_<series>_<vendor>_<typeidx>` at
|
||||||
- **Qidi (`QD_*`).** `QD_*` is a device-*protocol* namespace, not a preset id space: the
|
runtime (slot vendor and type indices reported by the device, the series digit inferred
|
||||||
Qidi box path composes `QD_<series>_<vendor>_<typeidx>` ids at runtime (slot vendor and
|
client-side from the printer model/name). Qidi presets carry ordinary minted `OF*` ids
|
||||||
type indices reported by the device, the series digit inferred client-side from the printer
|
(generics share the OFL ids), so a composed id matches no preset and the slot falls back to
|
||||||
model/name). Qidi presets carry ordinary minted `OF*` ids (generics share the OFL ids), so
|
filament type; translating it to the filament's id belongs in `QidiPrinterAgent`. Treating
|
||||||
a composed id matches no preset and the slot falls back to filament type; translating it to
|
per-series protocol ids as preset ids would put one product under five ids
|
||||||
the filament's id belongs in `QidiPrinterAgent`. The alternative — treating per-series
|
(`QIDI PLA Rapido` would be `QD_0_1_1` through `QD_4_1_1`) — exactly the fragmentation the
|
||||||
protocol ids as preset ids — would put one product under five ids (`QIDI PLA Rapido` would
|
mint rule removes.
|
||||||
be `QD_0_1_1` through `QD_4_1_1`), exactly the fragmentation the mint rule removes.
|
- **`P` + 7 hex chars, and `"null"`.** What `CreatePresetsDialog.cpp` gives a filament a *user*
|
||||||
|
creates. Those are user presets, not system profiles, and the two never meet in the tree.
|
||||||
|
|
||||||
## The Bambu catalog map
|
## The Bambu catalog map
|
||||||
|
|
||||||
@@ -337,7 +339,7 @@ OrcaFilamentLibrary. **135 is the number to expect at every regeneration** — 1
|
|||||||
one-off size of the transition and stopped being computable from the tree once the BBL bundle
|
one-off size of the transition and stopped being computable from the tree once the BBL bundle
|
||||||
was re-minted, so do not "fix" the report to print it.
|
was re-minted, so do not "fix" the report to print it.
|
||||||
|
|
||||||
**Check 6** lives in `check_filament_ids`, so profile CI runs it alongside the other five. It
|
**Check 5** lives in `check_filament_ids`, so profile CI runs it alongside the other four. It
|
||||||
holds the file to its contract: it parses, carries `source` / `bambustudio_commit` /
|
holds the file to its contract: it parses, carries `source` / `bambustudio_commit` /
|
||||||
`generated`, keys only `OF`-format ids, maps each Bambu id at most once, and — for every row
|
`generated`, keys only `OF`-format ids, maps each Bambu id at most once, and — for every row
|
||||||
whose key the tree actually claims — agrees with the tree on that id's `(vendor, type, name)`
|
whose key the tree actually claims — agrees with the tree on that id's `(vendor, type, name)`
|
||||||
@@ -426,11 +428,11 @@ map would silently reproduce the bug.
|
|||||||
## How CI enforces this
|
## How CI enforces this
|
||||||
|
|
||||||
Profile CI (`check_profiles.yml`) runs `check_filament_ids()` tree-wide via
|
Profile CI (`check_profiles.yml`) runs `check_filament_ids()` tree-wide via
|
||||||
`scripts/orca_extra_profile_check.py`. Its ground truth is
|
`scripts/orca_profile_tool.py check`. Its ground truth is
|
||||||
**`scripts/filament_id_snapshot.json` — the sanctioned state**: the id state derived from the
|
**`scripts/filament_id_snapshot.json` — the sanctioned state**: the id state derived from the
|
||||||
tree must equal the snapshot exactly, in both directions. Any change to the id landscape
|
tree must equal the snapshot exactly, in both directions. Any change to the id landscape
|
||||||
therefore surfaces as a diff to that file, and **that snapshot diff is what maintainers review
|
therefore surfaces as a diff to that file, and **that snapshot diff is what maintainers review
|
||||||
and gate in a PR**. Never edit the snapshot by hand — `--update-snapshot` regenerates it
|
and gate in a PR**. Never edit the snapshot by hand — `update-snapshot` regenerates it
|
||||||
deterministically (running it twice changes nothing). The snapshot holds one map, `ids`: each
|
deterministically (running it twice changes nothing). The snapshot holds one map, `ids`: each
|
||||||
entry is the product the id is minted from (`filament_vendor`, `filament_type`, `name`) and the
|
entry is the product the id is minted from (`filament_vendor`, `filament_type`, `name`) and the
|
||||||
`filaments` claiming it (`Vendor/Filament`), and it sanctions *state*, never exceptions: no check
|
`filaments` claiming it (`Vendor/Filament`), and it sanctions *state*, never exceptions: no check
|
||||||
@@ -450,8 +452,6 @@ The checks, in brief:
|
|||||||
system filament must resolve an effective id at all (recall: an id-less one is a hard load
|
system filament must resolve an effective id at all (recall: an id-less one is a hard load
|
||||||
error in C++ that discards the whole vendor bundle); and no two products mint one id (a
|
error in C++ that discards the whole vendor bundle); and no two products mint one id (a
|
||||||
base62 collision, resolved by renaming one of them). The errors print the expected id.
|
base62 collision, resolved by renaming one of them). The errors print the expected id.
|
||||||
- **Reserved namespaces** — `GF*`, `QD_*`, `P<7-hex>` or `"null"` claimed by any vendor,
|
|
||||||
BBL and Qidi included.
|
|
||||||
- **Triple integrity** — every declarer must resolve a non-empty `filament_vendor` and
|
- **Triple integrity** — every declarer must resolve a non-empty `filament_vendor` and
|
||||||
`filament_type` (generics use `"Generic"`), and all declarers of one filament within a
|
`filament_type` (generics use `"Generic"`), and all declarers of one filament within a
|
||||||
bundle must agree on the triple.
|
bundle must agree on the triple.
|
||||||
@@ -461,16 +461,15 @@ The checks, in brief:
|
|||||||
tree claims. See [The Bambu catalog map](#the-bambu-catalog-map); the remedy is always to
|
tree claims. See [The Bambu catalog map](#the-bambu-catalog-map); the remedy is always to
|
||||||
regenerate, never to hand-edit.
|
regenerate, never to hand-edit.
|
||||||
|
|
||||||
A profile that declares a **reserved-namespace** id — `GF*`, `QD_*` or `P<7-hex>`, whatever
|
A profile that declares an id no triple mints — a Bambu catalog id, a composed Qidi one, a
|
||||||
its vendor — cannot pass the format check, so `--update-snapshot` refuses to sanction it
|
hand-typed value, whatever its vendor — fails the format check. For a Bambu-cataloged product
|
||||||
rather than hide the mistake until CI. For a Bambu-cataloged product, the catalog map is where
|
the catalog map is where the correspondence belongs. New sharing via a *declared* id is caught
|
||||||
the correspondence belongs. Any other new sharing via a *declared* id is caught by the identity
|
by the identity check; sharing through inheritance carries no declaration to check and surfaces
|
||||||
check; sharing through inheritance carries no declaration to check and surfaces only as a new
|
only as a new claim in the snapshot diff — which is exactly why that diff is the gate.
|
||||||
claim in the snapshot diff — which is exactly why that diff is the gate.
|
|
||||||
|
|
||||||
`orca_extra_profile_check.py` separately holds every declared id to the AMS 8-character limit,
|
The same `check` run holds every declared id to the AMS 8-character limit, tree-wide and for
|
||||||
tree-wide and for every vendor alike, scoped to the presets a vendor's index actually
|
every vendor alike, scoped to the presets a vendor's index actually references (a file the index
|
||||||
references (a file the index never loads cannot break AMS matching).
|
never loads cannot break AMS matching).
|
||||||
|
|
||||||
Complementing the Python checks, CI also runs the C++ profile validator with `-f`
|
Complementing the Python checks, CI also runs the C++ profile validator with `-f`
|
||||||
(`check_filament_subtypes`): it loads the bundle exactly as the app does and flags any printer
|
(`check_filament_subtypes`): it loads the bundle exactly as the app does and flags any printer
|
||||||
@@ -488,21 +487,21 @@ ambiguity check behind structure rule 3.
|
|||||||
`Generic PLA` base name, set `compatible_printers`; no id key needed.
|
`Generic PLA` base name, set `compatible_printers`; no id key needed.
|
||||||
- **A branded filament that borrows a generic's settings?** Fine — inherit `Generic X @System`
|
- **A branded filament that borrows a generic's settings?** Fine — inherit `Generic X @System`
|
||||||
(or any real filament) for the settings and declare the id of your own filament; run
|
(or any real filament) for the settings and declare the id of your own filament; run
|
||||||
`python scripts/orca_id_tool.py --generate` to mint it. Inheritance never changes the id.
|
`python scripts/orca_profile_tool.py generate-id` to mint it. Inheritance never changes the id.
|
||||||
- **I need to fix a filament's `filament_vendor` or `filament_type`.** Fix the config, run
|
- **I need to fix a filament's `filament_vendor` or `filament_type`.** Fix the config, run
|
||||||
`--generate --vendor <Vendor>` (preview with `--dry-run`), then `--update-snapshot`, and commit
|
`generate-id --vendor <Vendor>` (preview with `--dry-run`), then `update-snapshot`, and commit
|
||||||
the profile and snapshot diffs together. The id re-derives from the corrected identity, and
|
the profile and snapshot diffs together. The id re-derives from the corrected identity, and
|
||||||
nothing forwards the old value, so a tray or record still holding it falls back to matching by
|
nothing forwards the old value, so a tray or record still holding it falls back to matching by
|
||||||
filament type.
|
filament type.
|
||||||
- **I need to rename a filament.** Rename the presets (adding `renamed_from`, which keeps the
|
- **I need to rename a filament.** Rename the presets (adding `renamed_from`, which keeps the
|
||||||
preset *name* resolving), then `--generate --vendor <Vendor>` (preview with `--dry-run`), then
|
preset *name* resolving), then `generate-id --vendor <Vendor>` (preview with `--dry-run`), then
|
||||||
`--update-snapshot`. The id follows the new filament name; as with any identity fix, the old id
|
`update-snapshot`. The id follows the new filament name; as with any identity fix, the old id
|
||||||
is not forwarded.
|
is not forwarded.
|
||||||
- **Can I reuse a `QD_*` id for a Qidi profile?** No — nobody can. It is the device protocol's
|
- **Can I reuse a `QD_*` id for a Qidi profile?** No — it is not a mint, so it is not a
|
||||||
own id space: the box composes those values at runtime and no preset carries one. Author
|
`filament_id`. Those values are composed by the box at runtime, and no preset carries one.
|
||||||
Qidi filaments like any other vendor's.
|
Author Qidi filaments like any other vendor's.
|
||||||
- **CI says my filament needs an id.** Run `python scripts/orca_id_tool.py --generate`, then
|
- **CI says my filament needs an id.** Run `python scripts/orca_profile_tool.py generate-id`, then
|
||||||
`--update-snapshot`, and commit both diffs. Do not type an id by hand.
|
`update-snapshot`, and commit both diffs. Do not type an id by hand.
|
||||||
|
|
||||||
For general profile authoring, see the profile development guide on the
|
For general profile authoring, see the profile development guide on the
|
||||||
[OrcaSlicer wiki](https://www.orcaslicer.com/wiki).
|
[OrcaSlicer wiki](https://www.orcaslicer.com/wiki).
|
||||||
|
|||||||
+416
-424
File diff suppressed because it is too large
Load Diff
+1461
-1461
File diff suppressed because it is too large
Load Diff
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"105"
|
"105"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"100"
|
"100"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"100"
|
"100"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"100"
|
"100"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"100"
|
"100"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"100"
|
"100"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"75"
|
"75"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"70"
|
"70"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"75"
|
"75"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"70"
|
"70"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"80"
|
"80"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"75"
|
"75"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"80"
|
"80"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"65"
|
"65"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"65"
|
"65"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"75"
|
"75"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"65"
|
"65"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"65"
|
"65"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"60"
|
"60"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"65"
|
"65"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"65"
|
"65"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"65"
|
"65"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -315,6 +315,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"55"
|
"55"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.87"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"100"
|
"100"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"35"
|
"35"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -334,6 +334,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"35"
|
"35"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -335,6 +335,5 @@
|
|||||||
],
|
],
|
||||||
"textured_plate_temp_initial_layer": [
|
"textured_plate_temp_initial_layer": [
|
||||||
"35"
|
"35"
|
||||||
],
|
]
|
||||||
"version": "2.0.0.77"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -89,14 +89,14 @@
|
|||||||
"name": "Generic PETG @Chuanying X1 0.25 Nozzle",
|
"name": "Generic PETG @Chuanying X1 0.25 Nozzle",
|
||||||
"sub_path": "filament/Generic PETG @Chuanying X1 0.25 Nozzle.json"
|
"sub_path": "filament/Generic PETG @Chuanying X1 0.25 Nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PVA @Chuanying",
|
|
||||||
"sub_path": "filament/Generic PVA @Chuanying.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PLA @Chuanying X1 0.25 Nozzle",
|
"name": "Generic PLA @Chuanying X1 0.25 Nozzle",
|
||||||
"sub_path": "filament/Generic PLA @Chuanying X1 0.25 Nozzle.json"
|
"sub_path": "filament/Generic PLA @Chuanying X1 0.25 Nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PVA @Chuanying",
|
||||||
|
"sub_path": "filament/Generic PVA @Chuanying.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PLA-Silk @Chuanying X1 0.25 Nozzle",
|
"name": "Generic PLA-Silk @Chuanying X1 0.25 Nozzle",
|
||||||
"sub_path": "filament/Generic PLA-Silk @Chuanying X1 0.25 Nozzle.json"
|
"sub_path": "filament/Generic PLA-Silk @Chuanying X1 0.25 Nozzle.json"
|
||||||
|
|||||||
@@ -196,6 +196,10 @@
|
|||||||
"name": "Generic ABS @CoLiDo X16",
|
"name": "Generic ABS @CoLiDo X16",
|
||||||
"sub_path": "filament/Generic ABS @CoLiDo X16.json"
|
"sub_path": "filament/Generic ABS @CoLiDo X16.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "CoLiDo PETG @CoLiDo SR1",
|
||||||
|
"sub_path": "filament/CoLiDo PETG @CoLiDo SR1.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PETG @CoLiDo DIY 4.0",
|
"name": "Generic PETG @CoLiDo DIY 4.0",
|
||||||
"sub_path": "filament/Generic PETG @CoLiDo DIY 4.0.json"
|
"sub_path": "filament/Generic PETG @CoLiDo DIY 4.0.json"
|
||||||
@@ -204,18 +208,6 @@
|
|||||||
"name": "Generic PETG @CoLiDo X16",
|
"name": "Generic PETG @CoLiDo X16",
|
||||||
"sub_path": "filament/Generic PETG @CoLiDo X16.json"
|
"sub_path": "filament/Generic PETG @CoLiDo X16.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "CoLiDo PETG @CoLiDo SR1",
|
|
||||||
"sub_path": "filament/CoLiDo PETG @CoLiDo SR1.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA @CoLiDo DIY 4.0",
|
|
||||||
"sub_path": "filament/Generic PLA @CoLiDo DIY 4.0.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA @CoLiDo X16",
|
|
||||||
"sub_path": "filament/Generic PLA @CoLiDo X16.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "CoLiDo PLA @CoLiDo SR1",
|
"name": "CoLiDo PLA @CoLiDo SR1",
|
||||||
"sub_path": "filament/CoLiDo PLA @CoLiDo SR1.json"
|
"sub_path": "filament/CoLiDo PLA @CoLiDo SR1.json"
|
||||||
@@ -228,6 +220,14 @@
|
|||||||
"name": "CoLiDo PLA+ @CoLiDo DIY 4.0 V2",
|
"name": "CoLiDo PLA+ @CoLiDo DIY 4.0 V2",
|
||||||
"sub_path": "filament/CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json"
|
"sub_path": "filament/CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA @CoLiDo DIY 4.0",
|
||||||
|
"sub_path": "filament/Generic PLA @CoLiDo DIY 4.0.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA @CoLiDo X16",
|
||||||
|
"sub_path": "filament/Generic PLA @CoLiDo X16.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic TPU @CoLiDo DIY 4.0",
|
"name": "Generic TPU @CoLiDo DIY 4.0",
|
||||||
"sub_path": "filament/Generic TPU @CoLiDo DIY 4.0.json"
|
"sub_path": "filament/Generic TPU @CoLiDo DIY 4.0.json"
|
||||||
|
|||||||
+1727
-1727
File diff suppressed because it is too large
Load Diff
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "CR-ABS @Ender-5 Max-all",
|
|
||||||
"inherits": "fdm_filament_abs",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "iCeI2obXsgQdrmmd",
|
|
||||||
"instantiation": "true",
|
|
||||||
"activate_air_filtration": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"additional_cooling_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"complete_print_exhaust_fan_speed": [
|
|
||||||
"80"
|
|
||||||
],
|
|
||||||
"cool_plate_temp": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"cool_plate_temp_initial_layer": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"during_print_exhaust_fan_speed": [
|
|
||||||
"60"
|
|
||||||
],
|
|
||||||
"fan_max_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
|
||||||
"15"
|
|
||||||
],
|
|
||||||
"filament_density": [
|
|
||||||
"1.08"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"filament_diameter": [
|
|
||||||
"1.75"
|
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.93"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"hot_plate_temp_initial_layer": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_range_high": [
|
|
||||||
"280"
|
|
||||||
],
|
|
||||||
"overhang_fan_speed": [
|
|
||||||
"60"
|
|
||||||
],
|
|
||||||
"required_nozzle_HRC": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
|
||||||
"12"
|
|
||||||
],
|
|
||||||
"textured_plate_temp": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"textured_plate_temp_initial_layer": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"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",
|
|
||||||
"customized_plate_temp": "90",
|
|
||||||
"customized_plate_temp_initial_layer": "90",
|
|
||||||
"default_filament_colour": "\"\"",
|
|
||||||
"enable_overhang_bridge_fan": "1",
|
|
||||||
"enable_pressure_advance": "1",
|
|
||||||
"enable_special_area_additional_cooling_fan": "0",
|
|
||||||
"epoxy_resin_plate_temp": "90",
|
|
||||||
"epoxy_resin_plate_temp_initial_layer": "90",
|
|
||||||
"filament_cooling_final_speed": "3.4",
|
|
||||||
"filament_cooling_initial_speed": "2.2",
|
|
||||||
"filament_cooling_moves": "4",
|
|
||||||
"filament_load_time": "0",
|
|
||||||
"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_unload_time": "0",
|
|
||||||
"filament_unloading_speed": "90",
|
|
||||||
"filament_unloading_speed_start": "100",
|
|
||||||
"material_flow_dependent_temperature": "0",
|
|
||||||
"material_flow_temp_graph": "[[3.0,230],[5.0,250],[10.0,260]]",
|
|
||||||
"pressure_advance": "0.03",
|
|
||||||
"support_material_interface_fan_speed": "-1",
|
|
||||||
"compatible_printers": [
|
|
||||||
"Creality Ender-5 Max 0.4 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,185 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "CR-Nylon @Ender-5 Max-all",
|
|
||||||
"inherits": "fdm_filament_pa",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "HHnHotIUIBzTdckU",
|
|
||||||
"instantiation": "true",
|
|
||||||
"activate_air_filtration": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"additional_cooling_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"close_fan_the_first_x_layers": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"complete_print_exhaust_fan_speed": [
|
|
||||||
"100"
|
|
||||||
],
|
|
||||||
"cool_plate_temp": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"cool_plate_temp_initial_layer": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"during_print_exhaust_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"fan_cooling_layer_time": [
|
|
||||||
"100"
|
|
||||||
],
|
|
||||||
"fan_max_speed": [
|
|
||||||
"100"
|
|
||||||
],
|
|
||||||
"fan_min_speed": [
|
|
||||||
"100"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"filament_density": [
|
|
||||||
"1.24"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_diameter": [
|
|
||||||
"1.75"
|
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.9"
|
|
||||||
],
|
|
||||||
"filament_is_support": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
|
||||||
"12"
|
|
||||||
],
|
|
||||||
"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.5"
|
|
||||||
],
|
|
||||||
"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.2"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"full_fan_speed_layer": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"hot_plate_temp": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"hot_plate_temp_initial_layer": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"nozzle_temperature": [
|
|
||||||
"250"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_initial_layer": [
|
|
||||||
"250"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_range_high": [
|
|
||||||
"280"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_range_low": [
|
|
||||||
"250"
|
|
||||||
],
|
|
||||||
"overhang_fan_speed": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"overhang_fan_threshold": [
|
|
||||||
"50%"
|
|
||||||
],
|
|
||||||
"reduce_fan_stop_start_freq": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"slow_down_for_layer_cooling": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
|
||||||
"8"
|
|
||||||
],
|
|
||||||
"slow_down_min_speed": [
|
|
||||||
"5"
|
|
||||||
],
|
|
||||||
"textured_plate_temp": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"textured_plate_temp_initial_layer": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"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.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": "45",
|
|
||||||
"epoxy_resin_plate_temp_initial_layer": "45",
|
|
||||||
"filament_cooling_final_speed": "3.4",
|
|
||||||
"filament_cooling_initial_speed": "2.2",
|
|
||||||
"filament_cooling_moves": "4",
|
|
||||||
"filament_load_time": "0",
|
|
||||||
"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_unload_time": "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.042",
|
|
||||||
"support_material_interface_fan_speed": "-1",
|
|
||||||
"compatible_printers": [
|
|
||||||
"Creality Ender-5 Max 0.4 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,163 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "CR-PETG @Ender-5 Max-all",
|
|
||||||
"inherits": "fdm_filament_petg",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "jMfevCqhjSPahBHJ",
|
|
||||||
"instantiation": "true",
|
|
||||||
"activate_air_filtration": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"additional_cooling_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"close_fan_the_first_x_layers": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"complete_print_exhaust_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"cool_plate_temp": [
|
|
||||||
"70"
|
|
||||||
],
|
|
||||||
"cool_plate_temp_initial_layer": [
|
|
||||||
"70"
|
|
||||||
],
|
|
||||||
"during_print_exhaust_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"14"
|
|
||||||
],
|
|
||||||
"filament_density": [
|
|
||||||
"1.23"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.95"
|
|
||||||
],
|
|
||||||
"filament_is_support": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
|
||||||
"16"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"80%"
|
|
||||||
],
|
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"filament_type": [
|
|
||||||
"PETG"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
|
||||||
"Creality"
|
|
||||||
],
|
|
||||||
"filament_wipe_distance": [
|
|
||||||
"2"
|
|
||||||
],
|
|
||||||
"hot_plate_temp": [
|
|
||||||
"80"
|
|
||||||
],
|
|
||||||
"hot_plate_temp_initial_layer": [
|
|
||||||
"80"
|
|
||||||
],
|
|
||||||
"nozzle_temperature": [
|
|
||||||
"240"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_initial_layer": [
|
|
||||||
"240"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"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",
|
|
||||||
"customized_plate_temp": "80",
|
|
||||||
"customized_plate_temp_initial_layer": "80",
|
|
||||||
"default_filament_colour": "\"\"",
|
|
||||||
"enable_overhang_bridge_fan": "1",
|
|
||||||
"enable_pressure_advance": "1",
|
|
||||||
"enable_special_area_additional_cooling_fan": "0",
|
|
||||||
"epoxy_resin_plate_temp": "80",
|
|
||||||
"epoxy_resin_plate_temp_initial_layer": "80",
|
|
||||||
"filament_cooling_final_speed": "3.4",
|
|
||||||
"filament_cooling_initial_speed": "2.2",
|
|
||||||
"filament_cooling_moves": "4",
|
|
||||||
"filament_load_time": "0",
|
|
||||||
"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_unload_time": "0",
|
|
||||||
"filament_unloading_speed": "90",
|
|
||||||
"filament_unloading_speed_start": "100",
|
|
||||||
"material_flow_dependent_temperature": "0",
|
|
||||||
"material_flow_temp_graph": "[[3.0,220],[5.0,240],[10.0,250]]",
|
|
||||||
"pressure_advance": "0.05",
|
|
||||||
"filament_id": "06101",
|
|
||||||
"support_material_interface_fan_speed": "-1",
|
|
||||||
"compatible_printers": [
|
|
||||||
"Creality Ender-5 Max 0.4 nozzle",
|
|
||||||
"Creality Ender-5 Max 0.6 nozzle",
|
|
||||||
"Creality Ender-5 Max 0.8 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,157 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "CR-PLA @Ender-5 Max-all",
|
|
||||||
"inherits": "fdm_filament_pla",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "sU0HCPjQoOLHPmPc",
|
|
||||||
"instantiation": "true",
|
|
||||||
"activate_air_filtration": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"additional_cooling_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"complete_print_exhaust_fan_speed": [
|
|
||||||
"80"
|
|
||||||
],
|
|
||||||
"cool_plate_temp": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"cool_plate_temp_initial_layer": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"during_print_exhaust_fan_speed": [
|
|
||||||
"60"
|
|
||||||
],
|
|
||||||
"eng_plate_temp": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"eng_plate_temp_initial_layer": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"hot_plate_temp_initial_layer": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_range_high": [
|
|
||||||
"240"
|
|
||||||
],
|
|
||||||
"required_nozzle_HRC": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"slow_down_min_speed": [
|
|
||||||
"20"
|
|
||||||
],
|
|
||||||
"textured_plate_temp": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"textured_plate_temp_initial_layer": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"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",
|
|
||||||
"customized_plate_temp": "50",
|
|
||||||
"customized_plate_temp_initial_layer": "50",
|
|
||||||
"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_load_time": "0",
|
|
||||||
"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_unload_time": "0",
|
|
||||||
"filament_unloading_speed": "90",
|
|
||||||
"filament_unloading_speed_start": "100",
|
|
||||||
"material_flow_dependent_temperature": "1",
|
|
||||||
"material_flow_temp_graph": "[[0.5,190],[1.0,220]]",
|
|
||||||
"pressure_advance": "0.04",
|
|
||||||
"support_material_interface_fan_speed": "-1",
|
|
||||||
"compatible_printers": [
|
|
||||||
"Creality Ender-5 Max 0.4 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,157 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "CR-Silk @Ender-5 Max-all",
|
|
||||||
"inherits": "fdm_filament_pla",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "vFgKdtdiuqqrL9rk",
|
|
||||||
"instantiation": "true",
|
|
||||||
"activate_air_filtration": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"additional_cooling_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"complete_print_exhaust_fan_speed": [
|
|
||||||
"80"
|
|
||||||
],
|
|
||||||
"cool_plate_temp": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"cool_plate_temp_initial_layer": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"during_print_exhaust_fan_speed": [
|
|
||||||
"60"
|
|
||||||
],
|
|
||||||
"eng_plate_temp": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"eng_plate_temp_initial_layer": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
|
||||||
"22"
|
|
||||||
],
|
|
||||||
"filament_density": [
|
|
||||||
"1.25"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"filament_diameter": [
|
|
||||||
"1.75"
|
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.95"
|
|
||||||
],
|
|
||||||
"filament_is_support": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"55"
|
|
||||||
],
|
|
||||||
"hot_plate_temp_initial_layer": [
|
|
||||||
"55"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_range_high": [
|
|
||||||
"240"
|
|
||||||
],
|
|
||||||
"required_nozzle_HRC": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
|
||||||
"12"
|
|
||||||
],
|
|
||||||
"slow_down_min_speed": [
|
|
||||||
"20"
|
|
||||||
],
|
|
||||||
"textured_plate_temp": [
|
|
||||||
"55"
|
|
||||||
],
|
|
||||||
"textured_plate_temp_initial_layer": [
|
|
||||||
"55"
|
|
||||||
],
|
|
||||||
"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": "0",
|
|
||||||
"customized_plate_temp": "55",
|
|
||||||
"customized_plate_temp_initial_layer": "55",
|
|
||||||
"default_filament_colour": "\"\"",
|
|
||||||
"enable_overhang_bridge_fan": "1",
|
|
||||||
"enable_pressure_advance": "1",
|
|
||||||
"enable_special_area_additional_cooling_fan": "0",
|
|
||||||
"epoxy_resin_plate_temp": "55",
|
|
||||||
"epoxy_resin_plate_temp_initial_layer": "55",
|
|
||||||
"filament_cooling_final_speed": "3.4",
|
|
||||||
"filament_cooling_initial_speed": "2.2",
|
|
||||||
"filament_cooling_moves": "4",
|
|
||||||
"filament_load_time": "0",
|
|
||||||
"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_unload_time": "0",
|
|
||||||
"filament_unloading_speed": "90",
|
|
||||||
"filament_unloading_speed_start": "100",
|
|
||||||
"material_flow_dependent_temperature": "0",
|
|
||||||
"material_flow_temp_graph": "[[1.0,190],[1.2,220]]",
|
|
||||||
"pressure_advance": "0.048",
|
|
||||||
"support_material_interface_fan_speed": "-1",
|
|
||||||
"compatible_printers": [
|
|
||||||
"Creality Ender-5 Max 0.4 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,163 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "Generic ABS @Ender-5 Max-all",
|
|
||||||
"inherits": "fdm_filament_abs",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "3BjyaE4hGrz7tqnk",
|
|
||||||
"instantiation": "true",
|
|
||||||
"activate_air_filtration": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"additional_cooling_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"complete_print_exhaust_fan_speed": [
|
|
||||||
"80"
|
|
||||||
],
|
|
||||||
"cool_plate_temp": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"cool_plate_temp_initial_layer": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"during_print_exhaust_fan_speed": [
|
|
||||||
"60"
|
|
||||||
],
|
|
||||||
"fan_max_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
|
||||||
"15"
|
|
||||||
],
|
|
||||||
"filament_density": [
|
|
||||||
"1.24"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"filament_soluble": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
|
||||||
"Generic"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe_distance": [
|
|
||||||
"2"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"full_fan_speed_layer": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"hot_plate_temp": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"hot_plate_temp_initial_layer": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_range_high": [
|
|
||||||
"280"
|
|
||||||
],
|
|
||||||
"overhang_fan_speed": [
|
|
||||||
"60"
|
|
||||||
],
|
|
||||||
"reduce_fan_stop_start_freq": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"required_nozzle_HRC": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
|
||||||
"12"
|
|
||||||
],
|
|
||||||
"textured_plate_temp": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"textured_plate_temp_initial_layer": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"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",
|
|
||||||
"customized_plate_temp": "90",
|
|
||||||
"customized_plate_temp_initial_layer": "90",
|
|
||||||
"default_filament_colour": "\"\"",
|
|
||||||
"enable_overhang_bridge_fan": "1",
|
|
||||||
"enable_pressure_advance": "1",
|
|
||||||
"enable_special_area_additional_cooling_fan": "0",
|
|
||||||
"epoxy_resin_plate_temp": "90",
|
|
||||||
"epoxy_resin_plate_temp_initial_layer": "90",
|
|
||||||
"filament_cooling_final_speed": "3.4",
|
|
||||||
"filament_cooling_initial_speed": "2.2",
|
|
||||||
"filament_cooling_moves": "4",
|
|
||||||
"filament_load_time": "0",
|
|
||||||
"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_unload_time": "0",
|
|
||||||
"filament_unloading_speed": "90",
|
|
||||||
"filament_unloading_speed_start": "100",
|
|
||||||
"material_flow_dependent_temperature": "0",
|
|
||||||
"material_flow_temp_graph": "[[3.0,230],[5.0,250],[10.0,260]]",
|
|
||||||
"pressure_advance": "0.034",
|
|
||||||
"support_material_interface_fan_speed": "-1",
|
|
||||||
"compatible_printers": [
|
|
||||||
"Creality Ender-5 Max 0.4 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,175 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "Generic ASA @Ender-5 Max-all",
|
|
||||||
"inherits": "fdm_filament_asa",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "1cOFjktr0dBTbYS4",
|
|
||||||
"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": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"cool_plate_temp_initial_layer": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"during_print_exhaust_fan_speed": [
|
|
||||||
"60"
|
|
||||||
],
|
|
||||||
"eng_plate_temp": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"eng_plate_temp_initial_layer": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"fan_cooling_layer_time": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"fan_max_speed": [
|
|
||||||
"70"
|
|
||||||
],
|
|
||||||
"fan_min_speed": [
|
|
||||||
"20"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"filament_density": [
|
|
||||||
"1.24"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"filament_diameter": [
|
|
||||||
"1.75"
|
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.93"
|
|
||||||
],
|
|
||||||
"filament_is_support": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
|
||||||
"12"
|
|
||||||
],
|
|
||||||
"filament_minimal_purge_on_wipe_tower": [
|
|
||||||
"15"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"100%"
|
|
||||||
],
|
|
||||||
"filament_retract_restart_extra": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_when_changing_layer": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"filament_soluble": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
|
||||||
"Generic"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe_distance": [
|
|
||||||
"2"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"full_fan_speed_layer": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"hot_plate_temp": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"hot_plate_temp_initial_layer": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_range_high": [
|
|
||||||
"280"
|
|
||||||
],
|
|
||||||
"reduce_fan_stop_start_freq": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"required_nozzle_HRC": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
|
||||||
"12"
|
|
||||||
],
|
|
||||||
"textured_plate_temp": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"textured_plate_temp_initial_layer": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"filament_start_gcode": [
|
|
||||||
"; filament start gcode\n"
|
|
||||||
],
|
|
||||||
"filament_end_gcode": [
|
|
||||||
"; filament end gcode \n"
|
|
||||||
],
|
|
||||||
"activate_chamber_temp_control": "0",
|
|
||||||
"chamber_temperature": "55",
|
|
||||||
"cool_cds_fan_start_at_height": "0.5",
|
|
||||||
"cool_special_cds_fan_speed": "0",
|
|
||||||
"customized_plate_temp": "90",
|
|
||||||
"customized_plate_temp_initial_layer": "90",
|
|
||||||
"default_filament_colour": "\"\"",
|
|
||||||
"enable_overhang_bridge_fan": "1",
|
|
||||||
"enable_pressure_advance": "1",
|
|
||||||
"enable_special_area_additional_cooling_fan": "0",
|
|
||||||
"epoxy_resin_plate_temp": "90",
|
|
||||||
"epoxy_resin_plate_temp_initial_layer": "90",
|
|
||||||
"filament_cooling_final_speed": "3.4",
|
|
||||||
"filament_cooling_initial_speed": "2.2",
|
|
||||||
"filament_cooling_moves": "4",
|
|
||||||
"filament_load_time": "0",
|
|
||||||
"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_unload_time": "0",
|
|
||||||
"filament_unloading_speed": "90",
|
|
||||||
"filament_unloading_speed_start": "100",
|
|
||||||
"material_flow_dependent_temperature": "0",
|
|
||||||
"material_flow_temp_graph": "[[3.0,240],[8.0,250],[12.0,260]]",
|
|
||||||
"pressure_advance": "0.03",
|
|
||||||
"support_material_interface_fan_speed": "-1",
|
|
||||||
"compatible_printers": [
|
|
||||||
"Creality Ender-5 Max 0.4 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,163 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "Generic PETG @Ender-5 Max-all",
|
|
||||||
"inherits": "fdm_filament_petg",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "yNgF407ERXuU7LHE",
|
|
||||||
"instantiation": "true",
|
|
||||||
"activate_air_filtration": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"additional_cooling_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"close_fan_the_first_x_layers": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"complete_print_exhaust_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"cool_plate_temp": [
|
|
||||||
"70"
|
|
||||||
],
|
|
||||||
"cool_plate_temp_initial_layer": [
|
|
||||||
"70"
|
|
||||||
],
|
|
||||||
"during_print_exhaust_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"eng_plate_temp": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"eng_plate_temp_initial_layer": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"fan_cooling_layer_time": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"fan_max_speed": [
|
|
||||||
"60"
|
|
||||||
],
|
|
||||||
"fan_min_speed": [
|
|
||||||
"20"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
|
||||||
"14"
|
|
||||||
],
|
|
||||||
"filament_density": [
|
|
||||||
"1.24"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.95"
|
|
||||||
],
|
|
||||||
"filament_is_support": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
|
||||||
"14"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"90%"
|
|
||||||
],
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"0.4"
|
|
||||||
],
|
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_type": [
|
|
||||||
"PETG"
|
|
||||||
],
|
|
||||||
"filament_wipe_distance": [
|
|
||||||
"2"
|
|
||||||
],
|
|
||||||
"hot_plate_temp": [
|
|
||||||
"80"
|
|
||||||
],
|
|
||||||
"hot_plate_temp_initial_layer": [
|
|
||||||
"80"
|
|
||||||
],
|
|
||||||
"nozzle_temperature": [
|
|
||||||
"240"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_initial_layer": [
|
|
||||||
"240"
|
|
||||||
],
|
|
||||||
"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"
|
|
||||||
],
|
|
||||||
"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",
|
|
||||||
"customized_plate_temp": "80",
|
|
||||||
"customized_plate_temp_initial_layer": "80",
|
|
||||||
"default_filament_colour": "\"\"",
|
|
||||||
"enable_overhang_bridge_fan": "1",
|
|
||||||
"enable_pressure_advance": "1",
|
|
||||||
"enable_special_area_additional_cooling_fan": "0",
|
|
||||||
"epoxy_resin_plate_temp": "80",
|
|
||||||
"epoxy_resin_plate_temp_initial_layer": "80",
|
|
||||||
"filament_cooling_final_speed": "3.4",
|
|
||||||
"filament_cooling_initial_speed": "2.2",
|
|
||||||
"filament_cooling_moves": "4",
|
|
||||||
"filament_load_time": "0",
|
|
||||||
"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_unload_time": "0",
|
|
||||||
"filament_unloading_speed": "90",
|
|
||||||
"filament_unloading_speed_start": "100",
|
|
||||||
"material_flow_dependent_temperature": "0",
|
|
||||||
"material_flow_temp_graph": "[[0.8,230],[1.0,240]]",
|
|
||||||
"pressure_advance": "0.064",
|
|
||||||
"support_material_interface_fan_speed": "-1",
|
|
||||||
"compatible_printers": [
|
|
||||||
"Creality Ender-5 Max 0.4 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,161 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "Generic PLA @Ender-5 Max-all",
|
|
||||||
"inherits": "fdm_filament_pla",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "ubfcxetXGj6agAoi",
|
|
||||||
"instantiation": "true",
|
|
||||||
"activate_air_filtration": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"additional_cooling_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"complete_print_exhaust_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"cool_plate_temp": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"cool_plate_temp_initial_layer": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"during_print_exhaust_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"eng_plate_temp": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"eng_plate_temp_initial_layer": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"filament_diameter": [
|
|
||||||
"1.75"
|
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.95"
|
|
||||||
],
|
|
||||||
"filament_is_support": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
|
||||||
"14"
|
|
||||||
],
|
|
||||||
"filament_minimal_purge_on_wipe_tower": [
|
|
||||||
"15"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"80%"
|
|
||||||
],
|
|
||||||
"filament_retract_restart_extra": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_when_changing_layer": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"0.8"
|
|
||||||
],
|
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"filament_soluble": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
|
||||||
"Generic"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe_distance": [
|
|
||||||
"2"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"full_fan_speed_layer": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"hot_plate_temp": [
|
|
||||||
"55"
|
|
||||||
],
|
|
||||||
"hot_plate_temp_initial_layer": [
|
|
||||||
"55"
|
|
||||||
],
|
|
||||||
"nozzle_temperature": [
|
|
||||||
"210"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_initial_layer": [
|
|
||||||
"210"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_range_high": [
|
|
||||||
"240"
|
|
||||||
],
|
|
||||||
"required_nozzle_HRC": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
|
||||||
"12"
|
|
||||||
],
|
|
||||||
"slow_down_min_speed": [
|
|
||||||
"20"
|
|
||||||
],
|
|
||||||
"textured_plate_temp": [
|
|
||||||
"55"
|
|
||||||
],
|
|
||||||
"textured_plate_temp_initial_layer": [
|
|
||||||
"55"
|
|
||||||
],
|
|
||||||
"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": "55",
|
|
||||||
"customized_plate_temp_initial_layer": "55",
|
|
||||||
"default_filament_colour": "\"\"",
|
|
||||||
"enable_overhang_bridge_fan": "1",
|
|
||||||
"enable_pressure_advance": "1",
|
|
||||||
"enable_special_area_additional_cooling_fan": "0",
|
|
||||||
"epoxy_resin_plate_temp": "55",
|
|
||||||
"epoxy_resin_plate_temp_initial_layer": "55",
|
|
||||||
"filament_cooling_final_speed": "3.4",
|
|
||||||
"filament_cooling_initial_speed": "2.2",
|
|
||||||
"filament_cooling_moves": "4",
|
|
||||||
"filament_load_time": "0",
|
|
||||||
"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_unload_time": "0",
|
|
||||||
"filament_unloading_speed": "90",
|
|
||||||
"filament_unloading_speed_start": "100",
|
|
||||||
"material_flow_dependent_temperature": "0",
|
|
||||||
"material_flow_temp_graph": "[[0.8,190],[1.0,210]]",
|
|
||||||
"pressure_advance": "0.04",
|
|
||||||
"support_material_interface_fan_speed": "-1",
|
|
||||||
"compatible_printers": [
|
|
||||||
"Creality Ender-5 Max 0.4 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,161 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "Generic PLA-CF @Ender-5 Max-all",
|
|
||||||
"inherits": "fdm_filament_pla",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "AHrCSGRui6sRCmQx",
|
|
||||||
"instantiation": "true",
|
|
||||||
"activate_air_filtration": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"additional_cooling_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"complete_print_exhaust_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"cool_plate_temp": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"cool_plate_temp_initial_layer": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"during_print_exhaust_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"eng_plate_temp": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"eng_plate_temp_initial_layer": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"filament_soluble": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_type": [
|
|
||||||
"PLA-CF"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
|
||||||
"Generic"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe_distance": [
|
|
||||||
"2"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"slow_down_min_speed": [
|
|
||||||
"20"
|
|
||||||
],
|
|
||||||
"textured_plate_temp": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"textured_plate_temp_initial_layer": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"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": "50",
|
|
||||||
"customized_plate_temp_initial_layer": "50",
|
|
||||||
"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_load_time": "0",
|
|
||||||
"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_unload_time": "0",
|
|
||||||
"filament_unloading_speed": "90",
|
|
||||||
"filament_unloading_speed_start": "100",
|
|
||||||
"material_flow_dependent_temperature": "0",
|
|
||||||
"material_flow_temp_graph": "[[1.0,190],[1.2,220]]",
|
|
||||||
"pressure_advance": "0.03",
|
|
||||||
"support_material_interface_fan_speed": "-1",
|
|
||||||
"compatible_printers": [
|
|
||||||
"Creality Ender-5 Max 0.4 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,155 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "Generic PLA-Silk @Ender-5 Max-all",
|
|
||||||
"inherits": "fdm_filament_pla",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "zIrKl9P6Aer6sbiS",
|
|
||||||
"instantiation": "true",
|
|
||||||
"activate_air_filtration": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"additional_cooling_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"complete_print_exhaust_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"cool_plate_temp": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"cool_plate_temp_initial_layer": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"during_print_exhaust_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"eng_plate_temp": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"eng_plate_temp_initial_layer": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"80%"
|
|
||||||
],
|
|
||||||
"filament_retract_restart_extra": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retract_when_changing_layer": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"0.8"
|
|
||||||
],
|
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"filament_soluble": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
|
||||||
"Generic"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe_distance": [
|
|
||||||
"2"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_z_hop_types": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"full_fan_speed_layer": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"hot_plate_temp": [
|
|
||||||
"55"
|
|
||||||
],
|
|
||||||
"hot_plate_temp_initial_layer": [
|
|
||||||
"55"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_range_high": [
|
|
||||||
"240"
|
|
||||||
],
|
|
||||||
"required_nozzle_HRC": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
|
||||||
"14"
|
|
||||||
],
|
|
||||||
"slow_down_min_speed": [
|
|
||||||
"20"
|
|
||||||
],
|
|
||||||
"textured_plate_temp": [
|
|
||||||
"55"
|
|
||||||
],
|
|
||||||
"textured_plate_temp_initial_layer": [
|
|
||||||
"55"
|
|
||||||
],
|
|
||||||
"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": "55",
|
|
||||||
"customized_plate_temp_initial_layer": "55",
|
|
||||||
"default_filament_colour": "\"\"",
|
|
||||||
"enable_overhang_bridge_fan": "1",
|
|
||||||
"enable_pressure_advance": "1",
|
|
||||||
"enable_special_area_additional_cooling_fan": "0",
|
|
||||||
"epoxy_resin_plate_temp": "55",
|
|
||||||
"epoxy_resin_plate_temp_initial_layer": "55",
|
|
||||||
"filament_cooling_final_speed": "3.4",
|
|
||||||
"filament_cooling_initial_speed": "2.2",
|
|
||||||
"filament_cooling_moves": "4",
|
|
||||||
"filament_load_time": "0",
|
|
||||||
"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_unload_time": "0",
|
|
||||||
"filament_unloading_speed": "90",
|
|
||||||
"filament_unloading_speed_start": "100",
|
|
||||||
"material_flow_dependent_temperature": "0",
|
|
||||||
"material_flow_temp_graph": "[[0.8,190],[1.0,220]]",
|
|
||||||
"pressure_advance": "0.044",
|
|
||||||
"support_material_interface_fan_speed": "-1",
|
|
||||||
"compatible_printers": [
|
|
||||||
"Creality Ender-5 Max 0.4 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,166 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "Generic TPU @Ender-5 Max-all",
|
|
||||||
"inherits": "fdm_filament_tpu",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "KPUcdZyegXYeyHOL",
|
|
||||||
"instantiation": "true",
|
|
||||||
"activate_air_filtration": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"additional_cooling_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"complete_print_exhaust_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"cool_plate_temp": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"cool_plate_temp_initial_layer": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"during_print_exhaust_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"eng_plate_temp": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"eng_plate_temp_initial_layer": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
|
||||||
"25"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"filament_diameter": [
|
|
||||||
"1.75"
|
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_is_support": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
|
||||||
"2"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"2"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"filament_soluble": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
|
||||||
"Generic"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_wipe_distance": [
|
|
||||||
"2"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"210"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_initial_layer": [
|
|
||||||
"210"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_range_high": [
|
|
||||||
"220"
|
|
||||||
],
|
|
||||||
"overhang_fan_threshold": [
|
|
||||||
"50%"
|
|
||||||
],
|
|
||||||
"required_nozzle_HRC": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"slow_down_min_speed": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"textured_plate_temp": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"textured_plate_temp_initial_layer": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"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": "50",
|
|
||||||
"customized_plate_temp_initial_layer": "50",
|
|
||||||
"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_load_time": "0",
|
|
||||||
"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_unload_time": "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.4",
|
|
||||||
"support_material_interface_fan_speed": "-1",
|
|
||||||
"compatible_printers": [
|
|
||||||
"Creality Ender-5 Max 0.4 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,175 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "HP-ASA @Ender-5 Max-all",
|
|
||||||
"inherits": "fdm_filament_asa",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "JzsojF2Um23vm2qT",
|
|
||||||
"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": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"cool_plate_temp_initial_layer": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"during_print_exhaust_fan_speed": [
|
|
||||||
"60"
|
|
||||||
],
|
|
||||||
"eng_plate_temp": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"eng_plate_temp_initial_layer": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"fan_cooling_layer_time": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"fan_max_speed": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"fan_min_speed": [
|
|
||||||
"20"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
|
||||||
"29"
|
|
||||||
],
|
|
||||||
"filament_density": [
|
|
||||||
"1.15"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"filament_diameter": [
|
|
||||||
"1.75"
|
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.88"
|
|
||||||
],
|
|
||||||
"filament_is_support": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
|
||||||
"16"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"hot_plate_temp_initial_layer": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_range_high": [
|
|
||||||
"280"
|
|
||||||
],
|
|
||||||
"reduce_fan_stop_start_freq": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"required_nozzle_HRC": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"textured_plate_temp": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"textured_plate_temp_initial_layer": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"filament_start_gcode": [
|
|
||||||
"; filament start gcode\n"
|
|
||||||
],
|
|
||||||
"filament_end_gcode": [
|
|
||||||
"; filament end gcode \n"
|
|
||||||
],
|
|
||||||
"activate_chamber_temp_control": "0",
|
|
||||||
"chamber_temperature": "55",
|
|
||||||
"cool_cds_fan_start_at_height": "0.5",
|
|
||||||
"cool_special_cds_fan_speed": "0",
|
|
||||||
"customized_plate_temp": "90",
|
|
||||||
"customized_plate_temp_initial_layer": "90",
|
|
||||||
"default_filament_colour": "\"\"",
|
|
||||||
"enable_overhang_bridge_fan": "1",
|
|
||||||
"enable_pressure_advance": "1",
|
|
||||||
"enable_special_area_additional_cooling_fan": "0",
|
|
||||||
"epoxy_resin_plate_temp": "90",
|
|
||||||
"epoxy_resin_plate_temp_initial_layer": "90",
|
|
||||||
"filament_cooling_final_speed": "3.4",
|
|
||||||
"filament_cooling_initial_speed": "2.2",
|
|
||||||
"filament_cooling_moves": "4",
|
|
||||||
"filament_load_time": "0",
|
|
||||||
"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_unload_time": "0",
|
|
||||||
"filament_unloading_speed": "90",
|
|
||||||
"filament_unloading_speed_start": "100",
|
|
||||||
"material_flow_dependent_temperature": "0",
|
|
||||||
"material_flow_temp_graph": "[[3.0,240],[8.0,250],[12.0,260]]",
|
|
||||||
"pressure_advance": "0.032",
|
|
||||||
"support_material_interface_fan_speed": "-1",
|
|
||||||
"compatible_printers": [
|
|
||||||
"Creality Ender-5 Max 0.4 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,168 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "HP-TPU @Ender-5 Max-all",
|
|
||||||
"inherits": "fdm_filament_tpu",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "7Y7KjqVEXrce3jKO",
|
|
||||||
"instantiation": "true",
|
|
||||||
"activate_air_filtration": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"additional_cooling_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"complete_print_exhaust_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"cool_plate_temp": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"cool_plate_temp_initial_layer": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"during_print_exhaust_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"eng_plate_temp": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"eng_plate_temp_initial_layer": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"filament_density": [
|
|
||||||
"1.26"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"filament_diameter": [
|
|
||||||
"1.75"
|
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_is_support": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
|
||||||
"2.5"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"2"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"hot_plate_temp_initial_layer": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"nozzle_temperature": [
|
|
||||||
"210"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_initial_layer": [
|
|
||||||
"210"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_range_high": [
|
|
||||||
"220"
|
|
||||||
],
|
|
||||||
"overhang_fan_threshold": [
|
|
||||||
"50%"
|
|
||||||
],
|
|
||||||
"required_nozzle_HRC": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"slow_down_min_speed": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"textured_plate_temp": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"textured_plate_temp_initial_layer": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"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": "50",
|
|
||||||
"customized_plate_temp_initial_layer": "50",
|
|
||||||
"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_load_time": "0",
|
|
||||||
"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_unload_time": "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.4",
|
|
||||||
"support_material_interface_fan_speed": "-1",
|
|
||||||
"compatible_printers": [
|
|
||||||
"Creality Ender-5 Max 0.4 nozzle",
|
|
||||||
"Creality Ender-5 Max 0.6 nozzle",
|
|
||||||
"Creality Ender-5 Max 0.8 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,166 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "Hyper ABS @Ender-5 Max-all",
|
|
||||||
"inherits": "fdm_filament_abs",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "jPfMyNBquP31h2Eb",
|
|
||||||
"instantiation": "true",
|
|
||||||
"activate_air_filtration": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"additional_cooling_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"complete_print_exhaust_fan_speed": [
|
|
||||||
"80"
|
|
||||||
],
|
|
||||||
"cool_plate_temp": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"cool_plate_temp_initial_layer": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"during_print_exhaust_fan_speed": [
|
|
||||||
"60"
|
|
||||||
],
|
|
||||||
"fan_max_speed": [
|
|
||||||
"20"
|
|
||||||
],
|
|
||||||
"fan_min_speed": [
|
|
||||||
"20"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
|
||||||
"15"
|
|
||||||
],
|
|
||||||
"filament_density": [
|
|
||||||
"1.08"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"nil"
|
|
||||||
],
|
|
||||||
"filament_diameter": [
|
|
||||||
"1.75"
|
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.92"
|
|
||||||
],
|
|
||||||
"filament_is_support": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
|
||||||
"60"
|
|
||||||
],
|
|
||||||
"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"
|
|
||||||
],
|
|
||||||
"hot_plate_temp": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"hot_plate_temp_initial_layer": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_range_high": [
|
|
||||||
"260"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_range_low": [
|
|
||||||
"230"
|
|
||||||
],
|
|
||||||
"overhang_fan_speed": [
|
|
||||||
"20"
|
|
||||||
],
|
|
||||||
"required_nozzle_HRC": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
|
||||||
"5"
|
|
||||||
],
|
|
||||||
"textured_plate_temp": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"textured_plate_temp_initial_layer": [
|
|
||||||
"90"
|
|
||||||
],
|
|
||||||
"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.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": "90",
|
|
||||||
"epoxy_resin_plate_temp_initial_layer": "90",
|
|
||||||
"filament_cooling_final_speed": "3.4",
|
|
||||||
"filament_cooling_initial_speed": "2.2",
|
|
||||||
"filament_cooling_moves": "4",
|
|
||||||
"filament_load_time": "0",
|
|
||||||
"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_unload_time": "0",
|
|
||||||
"filament_unloading_speed": "90",
|
|
||||||
"filament_unloading_speed_start": "100",
|
|
||||||
"material_flow_dependent_temperature": "0",
|
|
||||||
"material_flow_temp_graph": "[[3.0,230],[5.0,250],[10.0,260]]",
|
|
||||||
"pressure_advance": "0.025",
|
|
||||||
"support_material_interface_fan_speed": "-1",
|
|
||||||
"compatible_printers": [
|
|
||||||
"Creality Ender-5 Max 0.4 nozzle",
|
|
||||||
"Creality Ender-5 Max 0.6 nozzle",
|
|
||||||
"Creality Ender-5 Max 0.8 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,163 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "Hyper PETG @Ender-5 Max-all",
|
|
||||||
"inherits": "fdm_filament_petg",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "nr57CpZ5PwPmcOCR",
|
|
||||||
"instantiation": "true",
|
|
||||||
"activate_air_filtration": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"additional_cooling_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"close_fan_the_first_x_layers": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"complete_print_exhaust_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"cool_plate_temp": [
|
|
||||||
"70"
|
|
||||||
],
|
|
||||||
"cool_plate_temp_initial_layer": [
|
|
||||||
"70"
|
|
||||||
],
|
|
||||||
"during_print_exhaust_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"eng_plate_temp": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"eng_plate_temp_initial_layer": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"fan_cooling_layer_time": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"fan_max_speed": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"fan_min_speed": [
|
|
||||||
"20"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
|
||||||
"25"
|
|
||||||
],
|
|
||||||
"filament_density": [
|
|
||||||
"1.23"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.95"
|
|
||||||
],
|
|
||||||
"filament_is_support": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
|
||||||
"23"
|
|
||||||
],
|
|
||||||
"filament_retract_before_wipe": [
|
|
||||||
"80%"
|
|
||||||
],
|
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"filament_type": [
|
|
||||||
"PETG"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
|
||||||
"Creality"
|
|
||||||
],
|
|
||||||
"filament_wipe_distance": [
|
|
||||||
"2"
|
|
||||||
],
|
|
||||||
"hot_plate_temp": [
|
|
||||||
"80"
|
|
||||||
],
|
|
||||||
"hot_plate_temp_initial_layer": [
|
|
||||||
"80"
|
|
||||||
],
|
|
||||||
"nozzle_temperature": [
|
|
||||||
"240"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_initial_layer": [
|
|
||||||
"240"
|
|
||||||
],
|
|
||||||
"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"
|
|
||||||
],
|
|
||||||
"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",
|
|
||||||
"customized_plate_temp": "80",
|
|
||||||
"customized_plate_temp_initial_layer": "80",
|
|
||||||
"default_filament_colour": "\"\"",
|
|
||||||
"enable_overhang_bridge_fan": "1",
|
|
||||||
"enable_pressure_advance": "1",
|
|
||||||
"enable_special_area_additional_cooling_fan": "0",
|
|
||||||
"epoxy_resin_plate_temp": "80",
|
|
||||||
"epoxy_resin_plate_temp_initial_layer": "80",
|
|
||||||
"filament_cooling_final_speed": "3.4",
|
|
||||||
"filament_cooling_initial_speed": "2.2",
|
|
||||||
"filament_cooling_moves": "4",
|
|
||||||
"filament_load_time": "0",
|
|
||||||
"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_unload_time": "0",
|
|
||||||
"filament_unloading_speed": "90",
|
|
||||||
"filament_unloading_speed_start": "100",
|
|
||||||
"material_flow_dependent_temperature": "0",
|
|
||||||
"material_flow_temp_graph": "[[0.8,220],[1.0,240]]",
|
|
||||||
"pressure_advance": "0.05",
|
|
||||||
"support_material_interface_fan_speed": "-1",
|
|
||||||
"compatible_printers": [
|
|
||||||
"Creality Ender-5 Max 0.4 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "Hyper PLA @Ender-5 Max-all",
|
|
||||||
"inherits": "fdm_filament_pla",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "Nb1H9jKg8CPQXLVI",
|
|
||||||
"instantiation": "true",
|
|
||||||
"activate_air_filtration": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"additional_cooling_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"complete_print_exhaust_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"cool_plate_temp": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"cool_plate_temp_initial_layer": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"during_print_exhaust_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"eng_plate_temp": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"eng_plate_temp_initial_layer": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"filament_diameter": [
|
|
||||||
"1.75"
|
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.95"
|
|
||||||
],
|
|
||||||
"filament_is_support": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
|
||||||
"23"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_minimum_travel": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"55"
|
|
||||||
],
|
|
||||||
"hot_plate_temp_initial_layer": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_range_high": [
|
|
||||||
"240"
|
|
||||||
],
|
|
||||||
"required_nozzle_HRC": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"slow_down_min_speed": [
|
|
||||||
"20"
|
|
||||||
],
|
|
||||||
"textured_plate_temp": [
|
|
||||||
"55"
|
|
||||||
],
|
|
||||||
"textured_plate_temp_initial_layer": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"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": "55",
|
|
||||||
"customized_plate_temp_initial_layer": "45",
|
|
||||||
"default_filament_colour": "\"\"",
|
|
||||||
"enable_overhang_bridge_fan": "1",
|
|
||||||
"enable_pressure_advance": "1",
|
|
||||||
"enable_special_area_additional_cooling_fan": "0",
|
|
||||||
"epoxy_resin_plate_temp": "55",
|
|
||||||
"epoxy_resin_plate_temp_initial_layer": "45",
|
|
||||||
"filament_cooling_final_speed": "3.4",
|
|
||||||
"filament_cooling_initial_speed": "2.2",
|
|
||||||
"filament_cooling_moves": "4",
|
|
||||||
"filament_load_time": "0",
|
|
||||||
"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_unload_time": "0",
|
|
||||||
"filament_unloading_speed": "90",
|
|
||||||
"filament_unloading_speed_start": "100",
|
|
||||||
"material_flow_dependent_temperature": "0",
|
|
||||||
"material_flow_temp_graph": "[[1.0,190],[1.5,220]]",
|
|
||||||
"pressure_advance": "0.048",
|
|
||||||
"support_material_interface_fan_speed": "-1",
|
|
||||||
"compatible_printers": [
|
|
||||||
"Creality Ender-5 Max 0.4 nozzle",
|
|
||||||
"Creality Ender-5 Max 0.6 nozzle",
|
|
||||||
"Creality Ender-5 Max 0.8 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,163 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "Hyper PLA-CF @Ender-5 Max-all",
|
|
||||||
"inherits": "fdm_filament_pla",
|
|
||||||
"from": "system",
|
|
||||||
"setting_id": "pW3AHx1VemLWSa7q",
|
|
||||||
"instantiation": "true",
|
|
||||||
"activate_air_filtration": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"additional_cooling_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"complete_print_exhaust_fan_speed": [
|
|
||||||
"80"
|
|
||||||
],
|
|
||||||
"cool_plate_temp": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"cool_plate_temp_initial_layer": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"during_print_exhaust_fan_speed": [
|
|
||||||
"60"
|
|
||||||
],
|
|
||||||
"eng_plate_temp": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"eng_plate_temp_initial_layer": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
|
||||||
"32"
|
|
||||||
],
|
|
||||||
"filament_density": [
|
|
||||||
"1.27"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"filament_diameter": [
|
|
||||||
"1.75"
|
|
||||||
],
|
|
||||||
"filament_flow_ratio": [
|
|
||||||
"0.95"
|
|
||||||
],
|
|
||||||
"filament_is_support": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_max_volumetric_speed": [
|
|
||||||
"23"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"filament_soluble": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_type": [
|
|
||||||
"PLA-CF"
|
|
||||||
],
|
|
||||||
"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": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"hot_plate_temp_initial_layer": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_range_high": [
|
|
||||||
"240"
|
|
||||||
],
|
|
||||||
"required_nozzle_HRC": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"slow_down_min_speed": [
|
|
||||||
"20"
|
|
||||||
],
|
|
||||||
"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.5",
|
|
||||||
"cool_special_cds_fan_speed": "0",
|
|
||||||
"customized_plate_temp": "50",
|
|
||||||
"customized_plate_temp_initial_layer": "50",
|
|
||||||
"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_load_time": "0",
|
|
||||||
"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_unload_time": "0",
|
|
||||||
"filament_unloading_speed": "90",
|
|
||||||
"filament_unloading_speed_start": "100",
|
|
||||||
"material_flow_dependent_temperature": "0",
|
|
||||||
"material_flow_temp_graph": "[[1.0,190],[1.2,220]]",
|
|
||||||
"pressure_advance": "0.04",
|
|
||||||
"support_material_interface_fan_speed": "-1",
|
|
||||||
"compatible_printers": [
|
|
||||||
"Creality Ender-5 Max 0.4 nozzle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
+2544
-2544
File diff suppressed because it is too large
Load Diff
@@ -1,91 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "fdm_filament_paht",
|
|
||||||
"inherits": "fdm_filament_common",
|
|
||||||
"from": "system",
|
|
||||||
"instantiation": "false",
|
|
||||||
"filament_max_volumetric_speed": [
|
|
||||||
"12"
|
|
||||||
],
|
|
||||||
"filament_type": [
|
|
||||||
"PAHT"
|
|
||||||
],
|
|
||||||
"filament_density": [
|
|
||||||
"1.24"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"cool_plate_temp": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"eng_plate_temp": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"textured_plate_temp": [
|
|
||||||
"60"
|
|
||||||
],
|
|
||||||
"cool_plate_temp_initial_layer": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"eng_plate_temp_initial_layer": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"textured_plate_temp_initial_layer": [
|
|
||||||
"60"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_initial_layer": [
|
|
||||||
"220"
|
|
||||||
],
|
|
||||||
"reduce_fan_stop_start_freq": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"overhang_fan_threshold": [
|
|
||||||
"50%"
|
|
||||||
],
|
|
||||||
"close_fan_the_first_x_layers": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"nozzle_temperature": [
|
|
||||||
"220"
|
|
||||||
],
|
|
||||||
"temperature_vitrification": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_range_low": [
|
|
||||||
"190"
|
|
||||||
],
|
|
||||||
"nozzle_temperature_range_high": [
|
|
||||||
"240"
|
|
||||||
],
|
|
||||||
"slow_down_min_speed": [
|
|
||||||
"20"
|
|
||||||
],
|
|
||||||
"additional_cooling_fan_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"fan_cooling_layer_time": [
|
|
||||||
"80"
|
|
||||||
],
|
|
||||||
"fan_min_speed": [
|
|
||||||
"50"
|
|
||||||
],
|
|
||||||
"hot_plate_temp": [
|
|
||||||
"60"
|
|
||||||
],
|
|
||||||
"hot_plate_temp_initial_layer": [
|
|
||||||
"60"
|
|
||||||
],
|
|
||||||
"slow_down_layer_time": [
|
|
||||||
"8"
|
|
||||||
],
|
|
||||||
"filament_start_gcode": [
|
|
||||||
"; Filament start gcode\n"
|
|
||||||
],
|
|
||||||
"filament_end_gcode": [
|
|
||||||
"; filament end gcode \n"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
|
||||||
"Generic"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
+1
-2
@@ -1,15 +1,14 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.30mm Standard @Elegoo Giga 0.6 nozzle",
|
"name": "0.30mm Standard @Elegoo Giga 0.6 nozzle",
|
||||||
|
"renamed_from": "0.30mm Standard @EOS Giga 0.6 nozzle",
|
||||||
"inherits": "fdm_process_elegoo_06030",
|
"inherits": "fdm_process_elegoo_06030",
|
||||||
"from": "system",
|
"from": "system",
|
||||||
"setting_id": "mMP6cZhv9TYjYlEh",
|
"setting_id": "mMP6cZhv9TYjYlEh",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"renamed_from": "0.30mm Standard @EOS Giga 0.6 nozzle",
|
|
||||||
"default_acceleration": "3000",
|
"default_acceleration": "3000",
|
||||||
"filename_format": "EOGiga1_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode",
|
"filename_format": "EOGiga1_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode",
|
||||||
"initial_layer_acceleration": "1000",
|
"initial_layer_acceleration": "1000",
|
||||||
"is_custom_defined": "0",
|
|
||||||
"make_overhang_printable_angle": "90",
|
"make_overhang_printable_angle": "90",
|
||||||
"outer_wall_acceleration": "2000",
|
"outer_wall_acceleration": "2000",
|
||||||
"resolution": "0.05",
|
"resolution": "0.05",
|
||||||
|
|||||||
@@ -24,7 +24,6 @@
|
|||||||
"sparse_infill_speed": "100",
|
"sparse_infill_speed": "100",
|
||||||
"inner_wall_speed": "100",
|
"inner_wall_speed": "100",
|
||||||
"internal_solid_infill_speed": "100",
|
"internal_solid_infill_speed": "100",
|
||||||
"is_custom_defined": "0",
|
|
||||||
"outer_wall_speed": "60",
|
"outer_wall_speed": "60",
|
||||||
"top_surface_speed": "80"
|
"top_surface_speed": "80"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -244,26 +244,10 @@
|
|||||||
"name": "Generic PLA @FLSun S1",
|
"name": "Generic PLA @FLSun S1",
|
||||||
"sub_path": "filament/Generic PLA @FLSun S1.json"
|
"sub_path": "filament/Generic PLA @FLSun S1.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PLA High Speed @FLSun S1",
|
|
||||||
"sub_path": "filament/Generic PLA High Speed @FLSun S1.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA Silk @FLSun S1",
|
|
||||||
"sub_path": "filament/Generic PLA Silk @FLSun S1.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PLA @FLSun T1",
|
"name": "Generic PLA @FLSun T1",
|
||||||
"sub_path": "filament/Generic PLA @FLSun T1.json"
|
"sub_path": "filament/Generic PLA @FLSun T1.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PLA High Speed @FLSun T1",
|
|
||||||
"sub_path": "filament/Generic PLA High Speed @FLSun T1.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA Silk @FLSun T1",
|
|
||||||
"sub_path": "filament/Generic PLA Silk @FLSun T1.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic TPU @FLSun S1",
|
"name": "Generic TPU @FLSun S1",
|
||||||
"sub_path": "filament/Generic TPU @FLSun S1.json"
|
"sub_path": "filament/Generic TPU @FLSun S1.json"
|
||||||
@@ -271,6 +255,22 @@
|
|||||||
{
|
{
|
||||||
"name": "Generic TPU @FLSun T1",
|
"name": "Generic TPU @FLSun T1",
|
||||||
"sub_path": "filament/Generic TPU @FLSun T1.json"
|
"sub_path": "filament/Generic TPU @FLSun T1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA High Speed @FLSun S1",
|
||||||
|
"sub_path": "filament/Generic PLA High Speed @FLSun S1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA High Speed @FLSun T1",
|
||||||
|
"sub_path": "filament/Generic PLA High Speed @FLSun T1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA Silk @FLSun S1",
|
||||||
|
"sub_path": "filament/Generic PLA Silk @FLSun S1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA Silk @FLSun T1",
|
||||||
|
"sub_path": "filament/Generic PLA Silk @FLSun T1.json"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"machine_list": [
|
"machine_list": [
|
||||||
|
|||||||
+374
-374
@@ -439,22 +439,6 @@
|
|||||||
"name": "0.14mm Standard @FF AD5X 0.25 nozzle",
|
"name": "0.14mm Standard @FF AD5X 0.25 nozzle",
|
||||||
"sub_path": "process/0.14mm Standard @FF AD5X 0.25 nozzle.json"
|
"sub_path": "process/0.14mm Standard @FF AD5X 0.25 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "0.08mm Standard @FF C5 0.25 nozzle",
|
|
||||||
"sub_path": "process/0.08mm Standard @FF C5 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.10mm Standard @FF C5 0.25 nozzle",
|
|
||||||
"sub_path": "process/0.10mm Standard @FF C5 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.12mm Standard @FF C5 0.25 nozzle",
|
|
||||||
"sub_path": "process/0.12mm Standard @FF C5 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.14mm Standard @FF C5 0.25 nozzle",
|
|
||||||
"sub_path": "process/0.14mm Standard @FF C5 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "0.14mm Standard @Flashforge AD5M 0.25 Nozzle",
|
"name": "0.14mm Standard @Flashforge AD5M 0.25 Nozzle",
|
||||||
"sub_path": "process/0.14mm Standard @Flashforge AD5M 0.25 Nozzle.json"
|
"sub_path": "process/0.14mm Standard @Flashforge AD5M 0.25 Nozzle.json"
|
||||||
@@ -527,6 +511,22 @@
|
|||||||
"name": "0.42mm Draft @FF AD5X 0.6 nozzle",
|
"name": "0.42mm Draft @FF AD5X 0.6 nozzle",
|
||||||
"sub_path": "process/0.42mm Draft @FF AD5X 0.6 nozzle.json"
|
"sub_path": "process/0.42mm Draft @FF AD5X 0.6 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.08mm Standard @FF C5 0.25 nozzle",
|
||||||
|
"sub_path": "process/0.08mm Standard @FF C5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.10mm Standard @FF C5 0.25 nozzle",
|
||||||
|
"sub_path": "process/0.10mm Standard @FF C5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.12mm Standard @FF C5 0.25 nozzle",
|
||||||
|
"sub_path": "process/0.12mm Standard @FF C5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.14mm Standard @FF C5 0.25 nozzle",
|
||||||
|
"sub_path": "process/0.14mm Standard @FF C5 0.25 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.24mm Fine @FF AD5X 0.8 nozzle",
|
"name": "0.24mm Fine @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "process/0.24mm Fine @FF AD5X 0.8 nozzle.json"
|
"sub_path": "process/0.24mm Fine @FF AD5X 0.8 nozzle.json"
|
||||||
@@ -573,26 +573,30 @@
|
|||||||
"name": "Generic ASA @Flashforge",
|
"name": "Generic ASA @Flashforge",
|
||||||
"sub_path": "filament/Generic ASA @Flashforge.json"
|
"sub_path": "filament/Generic ASA @Flashforge.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PETG @Flashforge",
|
|
||||||
"sub_path": "filament/Generic PETG @Flashforge.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG-CF10 @Flashforge",
|
|
||||||
"sub_path": "filament/Generic PETG-CF10 @Flashforge.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Flashforge PETG",
|
"name": "Flashforge PETG",
|
||||||
"sub_path": "filament/Flashforge/Flashforge PETG @FF AD3.json"
|
"sub_path": "filament/Flashforge/Flashforge PETG @FF AD3.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG @Flashforge",
|
||||||
|
"sub_path": "filament/Generic PETG @Flashforge.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PETG @Flashforge Artemis",
|
"name": "Generic PETG @Flashforge Artemis",
|
||||||
"sub_path": "filament/Flashforge Generic PETG @Flashforge Artemis.json"
|
"sub_path": "filament/Flashforge Generic PETG @Flashforge Artemis.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG-CF10 @Flashforge",
|
||||||
|
"sub_path": "filament/Generic PETG-CF10 @Flashforge.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "SUNLU PETG @base",
|
"name": "SUNLU PETG @base",
|
||||||
"sub_path": "filament/SUNLU/SUNLU PETG @base.json"
|
"sub_path": "filament/SUNLU/SUNLU PETG @base.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA",
|
||||||
|
"sub_path": "filament/Flashforge/Flashforge PLA @FF AD3.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic HS PLA @Flashforge",
|
"name": "Generic HS PLA @Flashforge",
|
||||||
"sub_path": "filament/Generic HS PLA @Flashforge.json"
|
"sub_path": "filament/Generic HS PLA @Flashforge.json"
|
||||||
@@ -609,10 +613,6 @@
|
|||||||
"name": "Generic PLA-Silk @Flashforge",
|
"name": "Generic PLA-Silk @Flashforge",
|
||||||
"sub_path": "filament/Generic PLA-Silk @Flashforge.json"
|
"sub_path": "filament/Generic PLA-Silk @Flashforge.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Flashforge PLA",
|
|
||||||
"sub_path": "filament/Flashforge/Flashforge PLA @FF AD3.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "SUNLU PLA Marble @base",
|
"name": "SUNLU PLA Marble @base",
|
||||||
"sub_path": "filament/SUNLU/SUNLU PLA Marble @base.json"
|
"sub_path": "filament/SUNLU/SUNLU PLA Marble @base.json"
|
||||||
@@ -709,6 +709,10 @@
|
|||||||
"name": "Generic ABS @FF AD5M 0.25 Nozzle",
|
"name": "Generic ABS @FF AD5M 0.25 Nozzle",
|
||||||
"sub_path": "filament/Generic ABS @FF AD5M 0.25 Nozzle.json"
|
"sub_path": "filament/Generic ABS @FF AD5M 0.25 Nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ABS @Flashforge AD4",
|
||||||
|
"sub_path": "filament/Generic ABS @Flashforge AD4.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic ABS @Flashforge G3U",
|
"name": "Generic ABS @Flashforge G3U",
|
||||||
"sub_path": "filament/Generic ABS @Flashforge G3U.json"
|
"sub_path": "filament/Generic ABS @Flashforge G3U.json"
|
||||||
@@ -729,10 +733,6 @@
|
|||||||
"name": "Generic HIPS @Flashforge G3U 0.6 Nozzle",
|
"name": "Generic HIPS @Flashforge G3U 0.6 Nozzle",
|
||||||
"sub_path": "filament/Generic HIPS @Flashforge G3U 0.6 Nozzle.json"
|
"sub_path": "filament/Generic HIPS @Flashforge G3U 0.6 Nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic ABS @Flashforge AD4",
|
|
||||||
"sub_path": "filament/Generic ABS @Flashforge AD4.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Flashforge ASA @FF AD5M 0.25 Nozzle",
|
"name": "Flashforge ASA @FF AD5M 0.25 Nozzle",
|
||||||
"sub_path": "filament/Flashforge ASA @FF AD5M 0.25 Nozzle.json"
|
"sub_path": "filament/Flashforge ASA @FF AD5M 0.25 Nozzle.json"
|
||||||
@@ -745,41 +745,13 @@
|
|||||||
"name": "Generic ASA @FF AD5M 0.25 Nozzle",
|
"name": "Generic ASA @FF AD5M 0.25 Nozzle",
|
||||||
"sub_path": "filament/Generic ASA @FF AD5M 0.25 Nozzle.json"
|
"sub_path": "filament/Generic ASA @FF AD5M 0.25 Nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic ASA @Flashforge G3U 0.6 Nozzle",
|
|
||||||
"sub_path": "filament/Generic ASA @Flashforge G3U 0.6 Nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic ASA @Flashforge AD4",
|
"name": "Generic ASA @Flashforge AD4",
|
||||||
"sub_path": "filament/Generic ASA @Flashforge AD4.json"
|
"sub_path": "filament/Generic ASA @Flashforge AD4.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PETG @FF AD5M 0.25 Nozzle",
|
"name": "Generic ASA @Flashforge G3U 0.6 Nozzle",
|
||||||
"sub_path": "filament/Generic PETG @FF AD5M 0.25 Nozzle.json"
|
"sub_path": "filament/Generic ASA @Flashforge G3U 0.6 Nozzle.json"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG @Flashforge G3U",
|
|
||||||
"sub_path": "filament/Generic PETG @Flashforge G3U.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG @Flashforge G3U 0.6 Nozzle",
|
|
||||||
"sub_path": "filament/Generic PETG @Flashforge G3U 0.6 Nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG @Flashforge G3U 0.8 Nozzle",
|
|
||||||
"sub_path": "filament/Generic PETG @Flashforge G3U 0.8 Nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG-CF @Flashforge G3U",
|
|
||||||
"sub_path": "filament/Generic PETG-CF @Flashforge G3U.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG-CF @Flashforge G3U 0.6 Nozzle",
|
|
||||||
"sub_path": "filament/Generic PETG-CF @Flashforge G3U 0.6 Nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG-CF @Flashforge G3U 0.8 Nozzle",
|
|
||||||
"sub_path": "filament/Generic PETG-CF @Flashforge G3U 0.8 Nozzle.json"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge HS PETG",
|
"name": "Flashforge HS PETG",
|
||||||
@@ -905,10 +877,38 @@
|
|||||||
"name": "FusRock S-PAHT @G3U 0.6 Nozzle",
|
"name": "FusRock S-PAHT @G3U 0.6 Nozzle",
|
||||||
"sub_path": "filament/FusRock/FusRock S-PAHT @G3U 0.6 Nozzle.json"
|
"sub_path": "filament/FusRock/FusRock S-PAHT @G3U 0.6 Nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG @FF AD5M 0.25 Nozzle",
|
||||||
|
"sub_path": "filament/Generic PETG @FF AD5M 0.25 Nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PETG @Flashforge AD4",
|
"name": "Generic PETG @Flashforge AD4",
|
||||||
"sub_path": "filament/Generic PETG @Flashforge AD4.json"
|
"sub_path": "filament/Generic PETG @Flashforge AD4.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG @Flashforge G3U",
|
||||||
|
"sub_path": "filament/Generic PETG @Flashforge G3U.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG @Flashforge G3U 0.6 Nozzle",
|
||||||
|
"sub_path": "filament/Generic PETG @Flashforge G3U 0.6 Nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG @Flashforge G3U 0.8 Nozzle",
|
||||||
|
"sub_path": "filament/Generic PETG @Flashforge G3U 0.8 Nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG-CF @Flashforge G3U",
|
||||||
|
"sub_path": "filament/Generic PETG-CF @Flashforge G3U.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG-CF @Flashforge G3U 0.6 Nozzle",
|
||||||
|
"sub_path": "filament/Generic PETG-CF @Flashforge G3U 0.6 Nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG-CF @Flashforge G3U 0.8 Nozzle",
|
||||||
|
"sub_path": "filament/Generic PETG-CF @Flashforge G3U 0.8 Nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge PETG-CF",
|
"name": "Flashforge PETG-CF",
|
||||||
"sub_path": "filament/Flashforge PETG-CF.json"
|
"sub_path": "filament/Flashforge PETG-CF.json"
|
||||||
@@ -945,10 +945,6 @@
|
|||||||
"name": "SUNLU PETG @FF AD5M 0.8 Nozzle",
|
"name": "SUNLU PETG @FF AD5M 0.8 Nozzle",
|
||||||
"sub_path": "filament/SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json"
|
"sub_path": "filament/SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic HS PLA @FF AD5M 0.25 Nozzle",
|
|
||||||
"sub_path": "filament/Generic HS PLA @FF AD5M 0.25 Nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Flashforge HIPS @FF G4",
|
"name": "Flashforge HIPS @FF G4",
|
||||||
"sub_path": "filament/Flashforge HIPS @FF G4.json"
|
"sub_path": "filament/Flashforge HIPS @FF G4.json"
|
||||||
@@ -1049,42 +1045,14 @@
|
|||||||
"name": "Flashforge PLA-CF @FF G4P",
|
"name": "Flashforge PLA-CF @FF G4P",
|
||||||
"sub_path": "filament/Flashforge PLA-CF @FF G4P.json"
|
"sub_path": "filament/Flashforge PLA-CF @FF G4P.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic HS PLA @FF AD5M 0.25 Nozzle",
|
||||||
|
"sub_path": "filament/Generic HS PLA @FF AD5M 0.25 Nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PLA High Speed @Flashforge AD4",
|
"name": "Generic PLA High Speed @Flashforge AD4",
|
||||||
"sub_path": "filament/Generic PLA High Speed @Flashforge AD4.json"
|
"sub_path": "filament/Generic PLA High Speed @Flashforge AD4.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PLA @FF AD5M 0.25 Nozzle",
|
|
||||||
"sub_path": "filament/Generic PLA @FF AD5M 0.25 Nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA @Flashforge G3U",
|
|
||||||
"sub_path": "filament/Generic PLA @Flashforge G3U.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA @Flashforge G3U 0.6 Nozzle",
|
|
||||||
"sub_path": "filament/Generic PLA @Flashforge G3U 0.6 Nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA @Flashforge G3U 0.8 Nozzle",
|
|
||||||
"sub_path": "filament/Generic PLA @Flashforge G3U 0.8 Nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA-CF @Flashforge G3U",
|
|
||||||
"sub_path": "filament/Generic PLA-CF @Flashforge G3U.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA-CF @Flashforge G3U 0.6 Nozzle",
|
|
||||||
"sub_path": "filament/Generic PLA-CF @Flashforge G3U 0.6 Nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA-CF @Flashforge G3U 0.8 Nozzle",
|
|
||||||
"sub_path": "filament/Generic PLA-CF @Flashforge G3U 0.8 Nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PVA @Flashforge",
|
|
||||||
"sub_path": "filament/Generic PVA @Flashforge.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Flashforge HS PLA",
|
"name": "Flashforge HS PLA",
|
||||||
"sub_path": "filament/Flashforge HS PLA.json"
|
"sub_path": "filament/Flashforge HS PLA.json"
|
||||||
@@ -1233,10 +1201,42 @@
|
|||||||
"name": "Flashforge PLA Sparkle @FF AD5X 0.8 nozzle",
|
"name": "Flashforge PLA Sparkle @FF AD5X 0.8 nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA Sparkle @FF AD5X 0.8 nozzle.json"
|
"sub_path": "filament/Flashforge PLA Sparkle @FF AD5X 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA @FF AD5M 0.25 Nozzle",
|
||||||
|
"sub_path": "filament/Generic PLA @FF AD5M 0.25 Nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PLA @Flashforge AD4",
|
"name": "Generic PLA @Flashforge AD4",
|
||||||
"sub_path": "filament/Generic PLA @Flashforge AD4.json"
|
"sub_path": "filament/Generic PLA @Flashforge AD4.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA @Flashforge G3U",
|
||||||
|
"sub_path": "filament/Generic PLA @Flashforge G3U.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA @Flashforge G3U 0.6 Nozzle",
|
||||||
|
"sub_path": "filament/Generic PLA @Flashforge G3U 0.6 Nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA @Flashforge G3U 0.8 Nozzle",
|
||||||
|
"sub_path": "filament/Generic PLA @Flashforge G3U 0.8 Nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA-CF @Flashforge G3U",
|
||||||
|
"sub_path": "filament/Generic PLA-CF @Flashforge G3U.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA-CF @Flashforge G3U 0.6 Nozzle",
|
||||||
|
"sub_path": "filament/Generic PLA-CF @Flashforge G3U 0.6 Nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA-CF @Flashforge G3U 0.8 Nozzle",
|
||||||
|
"sub_path": "filament/Generic PLA-CF @Flashforge G3U 0.8 Nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PVA @Flashforge",
|
||||||
|
"sub_path": "filament/Generic PVA @Flashforge.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Polymaker CoPA",
|
"name": "Polymaker CoPA",
|
||||||
"sub_path": "filament/Polymaker/Polymaker CoPA.json"
|
"sub_path": "filament/Polymaker/Polymaker CoPA.json"
|
||||||
@@ -1297,10 +1297,6 @@
|
|||||||
"name": "Generic PLA-CF10 @Flashforge AD4",
|
"name": "Generic PLA-CF10 @Flashforge AD4",
|
||||||
"sub_path": "filament/Generic PLA-CF10 @Flashforge AD4.json"
|
"sub_path": "filament/Generic PLA-CF10 @Flashforge AD4.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PLA-SILK @FF AD5M 0.25 Nozzle",
|
|
||||||
"sub_path": "filament/Generic PLA-SILK @FF AD5M 0.25 Nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Flashforge PLA Silk",
|
"name": "Flashforge PLA Silk",
|
||||||
"sub_path": "filament/Flashforge PLA Silk.json"
|
"sub_path": "filament/Flashforge PLA Silk.json"
|
||||||
@@ -1325,6 +1321,10 @@
|
|||||||
"name": "Generic PLA Silk @Flashforge AD4",
|
"name": "Generic PLA Silk @Flashforge AD4",
|
||||||
"sub_path": "filament/Generic PLA Silk @Flashforge AD4.json"
|
"sub_path": "filament/Generic PLA Silk @Flashforge AD4.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA-SILK @FF AD5M 0.25 Nozzle",
|
||||||
|
"sub_path": "filament/Generic PLA-SILK @FF AD5M 0.25 Nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "SUNLU PLA Marble @FF AD3",
|
"name": "SUNLU PLA Marble @FF AD3",
|
||||||
"sub_path": "filament/SUNLU/SUNLU PLA Marble @FF AD3.json"
|
"sub_path": "filament/SUNLU/SUNLU PLA Marble @FF AD3.json"
|
||||||
@@ -1709,102 +1709,6 @@
|
|||||||
"name": "Flashforge ASA Basic @FF AD5X 0.25 nozzle",
|
"name": "Flashforge ASA Basic @FF AD5X 0.25 nozzle",
|
||||||
"sub_path": "filament/Flashforge ASA Basic @FF AD5X 0.25 nozzle.json"
|
"sub_path": "filament/Flashforge ASA Basic @FF AD5X 0.25 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Flashforge HS PETG @FF G4 0.6 HF nozzle",
|
|
||||||
"sub_path": "filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge HS PETG @FF G4 0.6 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge HS PETG @FF G4 0.6 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge HS PETG @FF G4 0.8 HF nozzle",
|
|
||||||
"sub_path": "filament/Flashforge HS PETG @FF G4 0.8 HF nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge HS PETG @FF G4P 0.6 HF nozzle",
|
|
||||||
"sub_path": "filament/Flashforge HS PETG @FF G4P 0.6 HF nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge HS PETG @FF G4P 0.6 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge HS PETG @FF G4P 0.6 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge HS PETG @FF G4P 0.8 HF nozzle",
|
|
||||||
"sub_path": "filament/Flashforge HS PETG @FF G4P 0.8 HF nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PETG Pro @FF G4 0.6 HF nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PETG Pro @FF G4 0.6 HF nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PETG Pro @FF G4 0.6 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PETG Pro @FF G4 0.6 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PETG Pro @FF G4 0.8 HF nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PETG Pro @FF G4 0.8 HF nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PETG Pro @FF G4P 0.6 HF nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PETG Pro @FF G4P 0.6 HF nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PETG Pro @FF G4P 0.6 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PETG Pro @FF G4P 0.6 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PETG Pro @FF G4P 0.8 HF nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PETG Pro @FF G4P 0.8 HF nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PETG Transparent @FF G4 0.6 HF nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PETG Transparent @FF G4 0.6 HF nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PETG Transparent @FF G4 0.6 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PETG Transparent @FF G4 0.6 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PETG Transparent @FF G4 0.8 HF nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PETG Transparent @FF G4 0.8 HF nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PETG Transparent @FF G4P 0.6 HF nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PETG Transparent @FF G4P 0.6 HF nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PETG Transparent @FF G4P 0.6 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PETG Transparent @FF G4P 0.6 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PETG Transparent @FF G4P 0.8 HF nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PETG Transparent @FF G4P 0.8 HF nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge TPU 65D @FF G4 0.6 HF nozzle",
|
|
||||||
"sub_path": "filament/Flashforge TPU 65D @FF G4 0.6 HF nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge TPU 65D @FF G4P 0.6 HF nozzle",
|
|
||||||
"sub_path": "filament/Flashforge TPU 65D @FF G4P 0.6 HF nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge TPU 95A @FF G4 0.6 HF nozzle",
|
|
||||||
"sub_path": "filament/Flashforge TPU 95A @FF G4 0.6 HF nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge TPU 95A @FF G4P 0.6 HF nozzle",
|
|
||||||
"sub_path": "filament/Flashforge TPU 95A @FF G4P 0.6 HF nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PETG-CF @FF G4 0.6 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PETG-CF @FF G4 0.6 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PETG-CF @FF G4P 0.6 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PETG-CF @FF G4P 0.6 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Flashforge HS PETG @FF AD5M 0.25 nozzle",
|
"name": "Flashforge HS PETG @FF AD5M 0.25 nozzle",
|
||||||
"sub_path": "filament/Flashforge HS PETG @FF AD5M 0.25 nozzle.json"
|
"sub_path": "filament/Flashforge HS PETG @FF AD5M 0.25 nozzle.json"
|
||||||
@@ -2045,6 +1949,254 @@
|
|||||||
"name": "Polymaker CoPA @FF G4P 0.8 HF nozzle",
|
"name": "Polymaker CoPA @FF G4P 0.8 HF nozzle",
|
||||||
"sub_path": "filament/Polymaker CoPA @FF G4P 0.8 HF nozzle.json"
|
"sub_path": "filament/Polymaker CoPA @FF G4P 0.8 HF nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge HS PETG @FF G4 0.6 HF nozzle",
|
||||||
|
"sub_path": "filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge HS PETG @FF G4 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge HS PETG @FF G4 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge HS PETG @FF G4 0.8 HF nozzle",
|
||||||
|
"sub_path": "filament/Flashforge HS PETG @FF G4 0.8 HF nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge HS PETG @FF G4P 0.6 HF nozzle",
|
||||||
|
"sub_path": "filament/Flashforge HS PETG @FF G4P 0.6 HF nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge HS PETG @FF G4P 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge HS PETG @FF G4P 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge HS PETG @FF G4P 0.8 HF nozzle",
|
||||||
|
"sub_path": "filament/Flashforge HS PETG @FF G4P 0.8 HF nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG Pro @FF G4 0.6 HF nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PETG Pro @FF G4 0.6 HF nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG Pro @FF G4 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PETG Pro @FF G4 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG Pro @FF G4 0.8 HF nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PETG Pro @FF G4 0.8 HF nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG Pro @FF G4P 0.6 HF nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PETG Pro @FF G4P 0.6 HF nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG Pro @FF G4P 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PETG Pro @FF G4P 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG Pro @FF G4P 0.8 HF nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PETG Pro @FF G4P 0.8 HF nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG Transparent @FF G4 0.6 HF nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PETG Transparent @FF G4 0.6 HF nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG Transparent @FF G4 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PETG Transparent @FF G4 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG Transparent @FF G4 0.8 HF nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PETG Transparent @FF G4 0.8 HF nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG Transparent @FF G4P 0.6 HF nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PETG Transparent @FF G4P 0.6 HF nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG Transparent @FF G4P 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PETG Transparent @FF G4P 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG Transparent @FF G4P 0.8 HF nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PETG Transparent @FF G4P 0.8 HF nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge TPU 65D @FF G4 0.6 HF nozzle",
|
||||||
|
"sub_path": "filament/Flashforge TPU 65D @FF G4 0.6 HF nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge TPU 65D @FF G4P 0.6 HF nozzle",
|
||||||
|
"sub_path": "filament/Flashforge TPU 65D @FF G4P 0.6 HF nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge TPU 95A @FF G4 0.6 HF nozzle",
|
||||||
|
"sub_path": "filament/Flashforge TPU 95A @FF G4 0.6 HF nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge TPU 95A @FF G4P 0.6 HF nozzle",
|
||||||
|
"sub_path": "filament/Flashforge TPU 95A @FF G4P 0.6 HF nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG-CF @FF G4 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PETG-CF @FF G4 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PETG-CF @FF G4P 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PETG-CF @FF G4P 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge HS PLA @FF AD5X 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge HS PLA @FF G4 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge HS PLA @FF G4 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge HS PLA @FF G4P 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge HS PLA @FF G4P 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Basic @FF AD5M 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Basic @FF AD5X 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Basic @FF AD5X 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Basic @FF G4 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Basic @FF G4 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Basic @FF G4P 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Basic @FF G4P 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Color Change @FF AD5M 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Color Change @FF AD5M 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Color Change @FF AD5X 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Color Change @FF AD5X 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Color Change @FF G4 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Color Change @FF G4 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Color Change @FF G4P 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Color Change @FF G4P 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Galaxy @FF AD5M 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Galaxy @FF AD5M 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Galaxy @FF AD5X 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Galaxy @FF AD5X 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Galaxy @FF G4 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Galaxy @FF G4 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Galaxy @FF G4P 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Galaxy @FF G4P 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Luminous @FF AD5M 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Luminous @FF AD5X 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Luminous @FF AD5X 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Luminous @FF G4 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Luminous @FF G4 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Luminous @FF G4P 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Luminous @FF G4P 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Matte @FF AD5M 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Matte @FF AD5M 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Matte @FF AD5X 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Matte @FF AD5X 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Matte @FF G4 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Matte @FF G4 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Matte @FF G4P 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Matte @FF G4P 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Metal @FF AD5M 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Metal @FF AD5M 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Metal @FF AD5X 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Metal @FF AD5X 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Metal @FF G4 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Metal @FF G4 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Metal @FF G4P 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Metal @FF G4P 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Pro @FF AD5M 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Pro @FF AD5M 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Pro @FF AD5X 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Pro @FF AD5X 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Pro @FF G4 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Pro @FF G4 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Pro @FF G4P 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Pro @FF G4P 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Silk @FF AD5X 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Silk @FF AD5X 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Silk @FF G4 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Silk @FF G4 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Silk @FF G4P 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Silk @FF G4P 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Sparkle @FF AD5M 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Sparkle @FF AD5M 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Sparkle @FF AD5X 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Sparkle @FF AD5X 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Sparkle @FF G4 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Sparkle @FF G4 0.25 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Sparkle @FF G4P 0.25 nozzle",
|
||||||
|
"sub_path": "filament/Flashforge PLA Sparkle @FF G4P 0.25 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge HS PLA @FF G4 0.6 HF nozzle",
|
"name": "Flashforge HS PLA @FF G4 0.6 HF nozzle",
|
||||||
"sub_path": "filament/Flashforge HS PLA @FF G4 0.6 HF nozzle.json"
|
"sub_path": "filament/Flashforge HS PLA @FF G4 0.6 HF nozzle.json"
|
||||||
@@ -2341,158 +2493,6 @@
|
|||||||
"name": "Flashforge PLA-CF @FF G4P 0.6 nozzle",
|
"name": "Flashforge PLA-CF @FF G4P 0.6 nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA-CF @FF G4P 0.6 nozzle.json"
|
"sub_path": "filament/Flashforge PLA-CF @FF G4P 0.6 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Flashforge HS PLA @FF AD5X 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge HS PLA @FF G4 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge HS PLA @FF G4 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge HS PLA @FF G4P 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge HS PLA @FF G4P 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Basic @FF AD5M 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Basic @FF AD5X 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Basic @FF AD5X 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Basic @FF G4 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Basic @FF G4 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Basic @FF G4P 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Basic @FF G4P 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Color Change @FF AD5M 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Color Change @FF AD5M 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Color Change @FF AD5X 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Color Change @FF AD5X 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Color Change @FF G4 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Color Change @FF G4 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Color Change @FF G4P 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Color Change @FF G4P 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Galaxy @FF AD5M 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Galaxy @FF AD5M 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Galaxy @FF AD5X 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Galaxy @FF AD5X 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Galaxy @FF G4 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Galaxy @FF G4 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Galaxy @FF G4P 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Galaxy @FF G4P 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Luminous @FF AD5M 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Luminous @FF AD5X 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Luminous @FF AD5X 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Luminous @FF G4 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Luminous @FF G4 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Luminous @FF G4P 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Luminous @FF G4P 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Matte @FF AD5M 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Matte @FF AD5M 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Matte @FF AD5X 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Matte @FF AD5X 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Matte @FF G4 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Matte @FF G4 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Matte @FF G4P 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Matte @FF G4P 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Metal @FF AD5M 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Metal @FF AD5M 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Metal @FF AD5X 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Metal @FF AD5X 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Metal @FF G4 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Metal @FF G4 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Metal @FF G4P 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Metal @FF G4P 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Pro @FF AD5M 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Pro @FF AD5M 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Pro @FF AD5X 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Pro @FF AD5X 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Pro @FF G4 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Pro @FF G4 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Pro @FF G4P 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Pro @FF G4P 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Silk @FF AD5X 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Silk @FF AD5X 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Silk @FF G4 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Silk @FF G4 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Silk @FF G4P 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Silk @FF G4P 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Sparkle @FF AD5M 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Sparkle @FF AD5M 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Sparkle @FF AD5X 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Sparkle @FF AD5X 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Sparkle @FF G4 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Sparkle @FF G4 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Sparkle @FF G4P 0.25 nozzle",
|
|
||||||
"sub_path": "filament/Flashforge PLA Sparkle @FF G4P 0.25 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Flashforge PLA Silk @FF AD5M 0.25 nozzle",
|
"name": "Flashforge PLA Silk @FF AD5M 0.25 nozzle",
|
||||||
"sub_path": "filament/Flashforge PLA Silk @FF AD5M 0.25 nozzle.json"
|
"sub_path": "filament/Flashforge PLA Silk @FF AD5M 0.25 nozzle.json"
|
||||||
@@ -2601,30 +2601,6 @@
|
|||||||
"name": "Flashforge PETG-CF @FF C5P",
|
"name": "Flashforge PETG-CF @FF C5P",
|
||||||
"sub_path": "filament/Flashforge PETG-CF @FF C5P.json"
|
"sub_path": "filament/Flashforge PETG-CF @FF C5P.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Matte @FF C5",
|
|
||||||
"sub_path": "filament/Flashforge PLA Matte @FF C5.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Matte @FF C5P",
|
|
||||||
"sub_path": "filament/Flashforge PLA Matte @FF C5P.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Metal @FF C5",
|
|
||||||
"sub_path": "filament/Flashforge PLA Metal @FF C5.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Metal @FF C5P",
|
|
||||||
"sub_path": "filament/Flashforge PLA Metal @FF C5P.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Pro @FF C5",
|
|
||||||
"sub_path": "filament/Flashforge PLA Pro @FF C5.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Flashforge PLA Pro @FF C5P",
|
|
||||||
"sub_path": "filament/Flashforge PLA Pro @FF C5P.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Flashforge PLA Basic @FF C5",
|
"name": "Flashforge PLA Basic @FF C5",
|
||||||
"sub_path": "filament/Flashforge PLA Basic @FF C5.json"
|
"sub_path": "filament/Flashforge PLA Basic @FF C5.json"
|
||||||
@@ -2657,6 +2633,30 @@
|
|||||||
"name": "Flashforge PLA Luminous @FF C5P",
|
"name": "Flashforge PLA Luminous @FF C5P",
|
||||||
"sub_path": "filament/Flashforge PLA Luminous @FF C5P.json"
|
"sub_path": "filament/Flashforge PLA Luminous @FF C5P.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Matte @FF C5",
|
||||||
|
"sub_path": "filament/Flashforge PLA Matte @FF C5.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Matte @FF C5P",
|
||||||
|
"sub_path": "filament/Flashforge PLA Matte @FF C5P.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Metal @FF C5",
|
||||||
|
"sub_path": "filament/Flashforge PLA Metal @FF C5.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Metal @FF C5P",
|
||||||
|
"sub_path": "filament/Flashforge PLA Metal @FF C5P.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Pro @FF C5",
|
||||||
|
"sub_path": "filament/Flashforge PLA Pro @FF C5.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Flashforge PLA Pro @FF C5P",
|
||||||
|
"sub_path": "filament/Flashforge PLA Pro @FF C5P.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Flashforge PLA Silk @FF C5",
|
"name": "Flashforge PLA Silk @FF C5",
|
||||||
"sub_path": "filament/Flashforge PLA Silk @FF C5.json"
|
"sub_path": "filament/Flashforge PLA Silk @FF C5.json"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "InfiMech",
|
"name": "InfiMech",
|
||||||
"version": "02.04.00.03",
|
"version": "02.04.00.04",
|
||||||
"force_update": "1",
|
"force_update": "1",
|
||||||
"description": "InfiMech configurations",
|
"description": "InfiMech configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
@@ -476,11 +476,11 @@
|
|||||||
"machine_list": [
|
"machine_list": [
|
||||||
{
|
{
|
||||||
"name": "fdm_machine_common",
|
"name": "fdm_machine_common",
|
||||||
"sub_path": "machine/HSN/fdm_machine_common.json"
|
"sub_path": "machine/fdm_machine_common.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "fdm_klipper_common",
|
"name": "fdm_klipper_common",
|
||||||
"sub_path": "machine/HSN/fdm_klipper_common.json"
|
"sub_path": "machine/fdm_klipper_common.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "InfiMech EX 0.4 nozzle",
|
"name": "InfiMech EX 0.4 nozzle",
|
||||||
|
|||||||
@@ -1,201 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "machine",
|
|
||||||
"name": "fdm_klipper_common",
|
|
||||||
"inherits": "fdm_machine_common",
|
|
||||||
"from": "system",
|
|
||||||
"instantiation": "false",
|
|
||||||
"gcode_flavor": "klipper",
|
|
||||||
"auxiliary_fan": "1",
|
|
||||||
"bed_exclude_area": [
|
|
||||||
"0x0"
|
|
||||||
],
|
|
||||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0",
|
|
||||||
"change_filament_gcode": "",
|
|
||||||
"cooling_tube_length": "5",
|
|
||||||
"cooling_tube_retraction": "91.5",
|
|
||||||
"default_filament_profile": [
|
|
||||||
"Generic PLA @InfiMech"
|
|
||||||
],
|
|
||||||
"default_print_profile": "0.20mm Standard @InfiMech TX",
|
|
||||||
"deretraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"enable_filament_ramming": "1",
|
|
||||||
"extra_loading_move": "-2",
|
|
||||||
"extruder_clearance_height_to_lid": "69",
|
|
||||||
"extruder_clearance_height_to_rod": "69",
|
|
||||||
"extruder_clearance_radius": "49",
|
|
||||||
"extruder_colour": [
|
|
||||||
"#FCE94F"
|
|
||||||
],
|
|
||||||
"extruder_offset": [
|
|
||||||
"0x0"
|
|
||||||
],
|
|
||||||
"fan_kickstart": "0",
|
|
||||||
"fan_speedup_overhangs": "1",
|
|
||||||
"fan_speedup_time": "0",
|
|
||||||
"high_current_on_filament_swap": "0",
|
|
||||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
|
||||||
"machine_end_gcode": "PRINT_END",
|
|
||||||
"machine_load_filament_time": "0",
|
|
||||||
"machine_max_acceleration_e": [
|
|
||||||
"5000",
|
|
||||||
"5000"
|
|
||||||
],
|
|
||||||
"machine_max_acceleration_extruding": [
|
|
||||||
"20000",
|
|
||||||
"20000"
|
|
||||||
],
|
|
||||||
"machine_max_acceleration_retracting": [
|
|
||||||
"5000",
|
|
||||||
"5000"
|
|
||||||
],
|
|
||||||
"machine_max_acceleration_travel": [
|
|
||||||
"20000",
|
|
||||||
"20000"
|
|
||||||
],
|
|
||||||
"machine_max_acceleration_x": [
|
|
||||||
"20000",
|
|
||||||
"20000"
|
|
||||||
],
|
|
||||||
"machine_max_acceleration_y": [
|
|
||||||
"20000",
|
|
||||||
"20000"
|
|
||||||
],
|
|
||||||
"machine_max_acceleration_z": [
|
|
||||||
"500",
|
|
||||||
"200"
|
|
||||||
],
|
|
||||||
"machine_max_jerk_e": [
|
|
||||||
"2.5",
|
|
||||||
"2.5"
|
|
||||||
],
|
|
||||||
"machine_max_jerk_x": [
|
|
||||||
"9",
|
|
||||||
"9"
|
|
||||||
],
|
|
||||||
"machine_max_jerk_y": [
|
|
||||||
"9",
|
|
||||||
"9"
|
|
||||||
],
|
|
||||||
"machine_max_jerk_z": [
|
|
||||||
"3",
|
|
||||||
"0.4"
|
|
||||||
],
|
|
||||||
"machine_max_speed_e": [
|
|
||||||
"30",
|
|
||||||
"25"
|
|
||||||
],
|
|
||||||
"machine_max_speed_x": [
|
|
||||||
"600",
|
|
||||||
"200"
|
|
||||||
],
|
|
||||||
"machine_max_speed_y": [
|
|
||||||
"600",
|
|
||||||
"200"
|
|
||||||
],
|
|
||||||
"machine_max_speed_z": [
|
|
||||||
"20",
|
|
||||||
"12"
|
|
||||||
],
|
|
||||||
"machine_min_extruding_rate": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"machine_min_travel_rate": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"machine_pause_gcode": "PAUSE",
|
|
||||||
"machine_start_gcode": ";v2.9.2-20240814;\n;wiping nozzle start\nM106 P3 S0\nM140 S[bed_temperature_initial_layer_single]\nclean_nozzle_position\n;wiping nozzle end\n;*************preheat nozzle and hotbed for Z_TILT_ADJUST*************\nM140 S[bed_temperature_initial_layer_single]\nM104 S130\nG1 X110 Y110 F10000 \nG4 P200\nprobe\nSET_KINEMATIC_POSITION Z=0 ;Z homing\nG1 Z5\nM190 S[bed_temperature_initial_layer_single]\nZ_TILT_ADJUST \n;*************Z_TILT_ADJUST end*************\nM140 S[bed_temperature_initial_layer_single] ;heat hotbed temp set by user\nG1 X5 Y5 F8000 \nG28 \nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 100,print_bed_max[0])} F6000 \nG1 Z0 F400\nM104 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user\nM106 S100 ;close head_nozzle fan\nG4 P3000\nM106 S255 ;close head_nozzle fan\nG4 P3000\nM106 S100 ;close head_nozzle fan\n;*************PRINT START*************\nM109 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user and wait \nM190 S[bed_temperature_initial_layer_single];heat bed temp set by user and wait \nM106 S0 ;close head_nozzle fan\nBED_MESH_CLEAR \nBED_MESH_PROFILE LOAD=default # bedmesh load\nG92 E0 ;Reset Extruder\n;G1 Z4.0 F200 ;Move Z Axis up\nG90 ;absolute position\n ; ; ; ; ; ; ; ; ; draw line along model\n;G92 E0 ;reset extruder\nG1 E3 F300 ;extrude filament\nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 100,print_bed_max[0])} F6000 \nG1 Z0.22 F600\nG1 X{first_layer_print_min[0]-1.5} Y{max(0, first_layer_print_min[1]-1.5)} F2000 E10\nG1 Z0.22 F600\nG1 X{min(first_layer_print_min[0] + 60,print_bed_max[0])} F1200 E12\n ; ; ; ; ; ; ; ; ;draw line along model end \nG4 P200\nG1 Z2\nG92 E0 ;Reset Extruder\nCLEAR_PAUSE\n;***********model start************\n",
|
|
||||||
"machine_unload_filament_time": "0",
|
|
||||||
"max_layer_height": [
|
|
||||||
"0.28"
|
|
||||||
],
|
|
||||||
"min_layer_height": [
|
|
||||||
"0.08"
|
|
||||||
],
|
|
||||||
"nozzle_diameter": [
|
|
||||||
"0.4"
|
|
||||||
],
|
|
||||||
"nozzle_hrc": "0",
|
|
||||||
"nozzle_type": "hardened_steel",
|
|
||||||
"nozzle_volume": "151.32",
|
|
||||||
"parking_pos_retraction": "92",
|
|
||||||
"print_host_webui": "",
|
|
||||||
"printable_area": [
|
|
||||||
"0x0",
|
|
||||||
"220x0",
|
|
||||||
"220x220",
|
|
||||||
"0x220"
|
|
||||||
],
|
|
||||||
"printable_height": "250",
|
|
||||||
"printer_model": "Generic Klipper Printer",
|
|
||||||
"printer_notes": "",
|
|
||||||
"printer_settings_id": "InfiMech TX 0.4 nozzle",
|
|
||||||
"printer_technology": "FFF",
|
|
||||||
"printer_variant": "0.4",
|
|
||||||
"printhost_apikey": "",
|
|
||||||
"printhost_authorization_type": "key",
|
|
||||||
"printhost_cafile": "",
|
|
||||||
"printhost_password": "",
|
|
||||||
"printhost_port": "",
|
|
||||||
"printhost_ssl_ignore_revoke": "0",
|
|
||||||
"printhost_user": "",
|
|
||||||
"purge_in_prime_tower": "1",
|
|
||||||
"retract_before_wipe": [
|
|
||||||
"0%"
|
|
||||||
],
|
|
||||||
"retract_length_toolchange": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"retract_lift_above": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"retract_lift_below": [
|
|
||||||
"249"
|
|
||||||
],
|
|
||||||
"retract_lift_enforce": [
|
|
||||||
"All Surfaces"
|
|
||||||
],
|
|
||||||
"retract_restart_extra": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"retract_restart_extra_toolchange": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"retract_when_changing_layer": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"retraction_length": [
|
|
||||||
"0.5"
|
|
||||||
],
|
|
||||||
"retraction_minimum_travel": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"retraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"scan_first_layer": "0",
|
|
||||||
"silent_mode": "0",
|
|
||||||
"single_extruder_multi_material": "1",
|
|
||||||
"template_custom_gcode": "",
|
|
||||||
"thumbnails": [
|
|
||||||
"300x300"
|
|
||||||
],
|
|
||||||
"upward_compatible_machine": [],
|
|
||||||
"use_firmware_retraction": "0",
|
|
||||||
"use_relative_e_distances": "1",
|
|
||||||
"wipe": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"wipe_distance": [
|
|
||||||
"2"
|
|
||||||
],
|
|
||||||
"z_hop": [
|
|
||||||
"0.4"
|
|
||||||
],
|
|
||||||
"z_hop_types": [
|
|
||||||
"Normal Lift"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,197 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "machine",
|
|
||||||
"name": "fdm_machine_common",
|
|
||||||
"from": "system",
|
|
||||||
"instantiation": "false",
|
|
||||||
"printer_technology": "FFF",
|
|
||||||
"gcode_flavor": "klipper",
|
|
||||||
"auxiliary_fan": "1",
|
|
||||||
"bed_exclude_area": [
|
|
||||||
"0x0"
|
|
||||||
],
|
|
||||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0",
|
|
||||||
"change_filament_gcode": "",
|
|
||||||
"cooling_tube_length": "5",
|
|
||||||
"cooling_tube_retraction": "91.5",
|
|
||||||
"default_filament_profile": [
|
|
||||||
"Generic PLA @InfiMech"
|
|
||||||
],
|
|
||||||
"default_print_profile": "0.20mm Standard @InfiMech TX",
|
|
||||||
"deretraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"enable_filament_ramming": "1",
|
|
||||||
"extra_loading_move": "-2",
|
|
||||||
"extruder_clearance_height_to_lid": "69",
|
|
||||||
"extruder_clearance_height_to_rod": "69",
|
|
||||||
"extruder_clearance_radius": "49",
|
|
||||||
"extruder_colour": [
|
|
||||||
"#FCE94F"
|
|
||||||
],
|
|
||||||
"extruder_offset": [
|
|
||||||
"0x0"
|
|
||||||
],
|
|
||||||
"fan_kickstart": "0",
|
|
||||||
"fan_speedup_overhangs": "1",
|
|
||||||
"fan_speedup_time": "0",
|
|
||||||
"high_current_on_filament_swap": "0",
|
|
||||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
|
||||||
"machine_end_gcode": "PRINT_END",
|
|
||||||
"machine_load_filament_time": "0",
|
|
||||||
"machine_max_acceleration_e": [
|
|
||||||
"5000",
|
|
||||||
"5000"
|
|
||||||
],
|
|
||||||
"machine_max_acceleration_extruding": [
|
|
||||||
"20000",
|
|
||||||
"20000"
|
|
||||||
],
|
|
||||||
"machine_max_acceleration_retracting": [
|
|
||||||
"5000",
|
|
||||||
"5000"
|
|
||||||
],
|
|
||||||
"machine_max_acceleration_travel": [
|
|
||||||
"9000",
|
|
||||||
"9000"
|
|
||||||
],
|
|
||||||
"machine_max_acceleration_x": [
|
|
||||||
"20000",
|
|
||||||
"20000"
|
|
||||||
],
|
|
||||||
"machine_max_acceleration_y": [
|
|
||||||
"20000",
|
|
||||||
"20000"
|
|
||||||
],
|
|
||||||
"machine_max_acceleration_z": [
|
|
||||||
"500",
|
|
||||||
"200"
|
|
||||||
],
|
|
||||||
"machine_max_jerk_e": [
|
|
||||||
"2.5",
|
|
||||||
"2.5"
|
|
||||||
],
|
|
||||||
"machine_max_jerk_x": [
|
|
||||||
"9",
|
|
||||||
"9"
|
|
||||||
],
|
|
||||||
"machine_max_jerk_y": [
|
|
||||||
"9",
|
|
||||||
"9"
|
|
||||||
],
|
|
||||||
"machine_max_jerk_z": [
|
|
||||||
"3",
|
|
||||||
"0.4"
|
|
||||||
],
|
|
||||||
"machine_max_speed_e": [
|
|
||||||
"30",
|
|
||||||
"25"
|
|
||||||
],
|
|
||||||
"machine_max_speed_x": [
|
|
||||||
"600",
|
|
||||||
"200"
|
|
||||||
],
|
|
||||||
"machine_max_speed_y": [
|
|
||||||
"600",
|
|
||||||
"200"
|
|
||||||
],
|
|
||||||
"machine_max_speed_z": [
|
|
||||||
"20",
|
|
||||||
"12"
|
|
||||||
],
|
|
||||||
"machine_min_extruding_rate": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"machine_min_travel_rate": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"machine_pause_gcode": "PAUSE",
|
|
||||||
"machine_start_gcode": ";v2.9.2-20240814;\n;wiping nozzle start\nM106 P3 S0\nM140 S[bed_temperature_initial_layer_single]\nclean_nozzle_position\n;wiping nozzle end\n;*************preheat nozzle and hotbed for Z_TILT_ADJUST*************\nM140 S[bed_temperature_initial_layer_single]\nM104 S130\nG1 X110 Y110 F10000 \nG4 P200\nprobe\nSET_KINEMATIC_POSITION Z=0 ;Z homing\nG1 Z5\nM190 S[bed_temperature_initial_layer_single]\nZ_TILT_ADJUST \n;*************Z_TILT_ADJUST end*************\nM140 S[bed_temperature_initial_layer_single] ;heat hotbed temp set by user\nG1 X5 Y5 F8000 \nG28 \nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 100,print_bed_max[0])} F6000 \nG1 Z0 F400\nM104 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user\nM106 S100 ;close head_nozzle fan\nG4 P3000\nM106 S255 ;close head_nozzle fan\nG4 P3000\nM106 S100 ;close head_nozzle fan\n;*************PRINT START*************\nM109 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user and wait \nM190 S[bed_temperature_initial_layer_single];heat bed temp set by user and wait \nM106 S0 ;close head_nozzle fan\nBED_MESH_CLEAR \nBED_MESH_PROFILE LOAD=default # bedmesh load\nG92 E0 ;Reset Extruder\n;G1 Z4.0 F200 ;Move Z Axis up\nG90 ;absolute position\n ; ; ; ; ; ; ; ; ; draw line along model\n;G92 E0 ;reset extruder\nG1 E3 F300 ;extrude filament\nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 100,print_bed_max[0])} F6000 \nG1 Z0.22 F600\nG1 X{first_layer_print_min[0]-1.5} Y{max(0, first_layer_print_min[1]-1.5)} F2000 E10\nG1 Z0.22 F600\nG1 X{min(first_layer_print_min[0] + 60,print_bed_max[0])} F1200 E12\n ; ; ; ; ; ; ; ; ;draw line along model end \nG4 P200\nG1 Z2\nG92 E0 ;Reset Extruder\nCLEAR_PAUSE\n;***********model start************\n",
|
|
||||||
"machine_unload_filament_time": "0",
|
|
||||||
"max_layer_height": [
|
|
||||||
"0.28"
|
|
||||||
],
|
|
||||||
"min_layer_height": [
|
|
||||||
"0.08"
|
|
||||||
],
|
|
||||||
"nozzle_hrc": "0",
|
|
||||||
"nozzle_type": "hardened_steel",
|
|
||||||
"nozzle_volume": "151.32",
|
|
||||||
"parking_pos_retraction": "92",
|
|
||||||
"print_host_webui": "",
|
|
||||||
"printable_area": [
|
|
||||||
"0x0",
|
|
||||||
"220x0",
|
|
||||||
"220x220",
|
|
||||||
"0x220"
|
|
||||||
],
|
|
||||||
"printable_height": "250",
|
|
||||||
"printer_model": "Generic Klipper Printer",
|
|
||||||
"printer_notes": "",
|
|
||||||
"printer_settings_id": "InfiMech TX 0.4 nozzle",
|
|
||||||
"printer_variant": "0.4",
|
|
||||||
"printhost_apikey": "",
|
|
||||||
"printhost_authorization_type": "key",
|
|
||||||
"printhost_cafile": "",
|
|
||||||
"printhost_password": "",
|
|
||||||
"printhost_port": "",
|
|
||||||
"printhost_ssl_ignore_revoke": "0",
|
|
||||||
"printhost_user": "",
|
|
||||||
"purge_in_prime_tower": "1",
|
|
||||||
"retract_before_wipe": [
|
|
||||||
"0%"
|
|
||||||
],
|
|
||||||
"retract_length_toolchange": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"retract_lift_above": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"retract_lift_below": [
|
|
||||||
"249"
|
|
||||||
],
|
|
||||||
"retract_lift_enforce": [
|
|
||||||
"All Surfaces"
|
|
||||||
],
|
|
||||||
"retract_restart_extra": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"retract_restart_extra_toolchange": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"retract_when_changing_layer": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"retraction_length": [
|
|
||||||
"0.5"
|
|
||||||
],
|
|
||||||
"retraction_minimum_travel": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"retraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"scan_first_layer": "0",
|
|
||||||
"silent_mode": "0",
|
|
||||||
"single_extruder_multi_material": "1",
|
|
||||||
"template_custom_gcode": "",
|
|
||||||
"thumbnails": [
|
|
||||||
"300x300"
|
|
||||||
],
|
|
||||||
"upward_compatible_machine": [],
|
|
||||||
"use_firmware_retraction": "0",
|
|
||||||
"use_relative_e_distances": "1",
|
|
||||||
"wipe": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"wipe_distance": [
|
|
||||||
"2"
|
|
||||||
],
|
|
||||||
"z_hop": [
|
|
||||||
"0.4"
|
|
||||||
],
|
|
||||||
"z_hop_types": [
|
|
||||||
"Normal Lift"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -119,7 +119,7 @@
|
|||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"nozzle_hrc": "0",
|
"nozzle_hrc": "0",
|
||||||
"nozzle_type": "brass",
|
"nozzle_type": "hardened_steel",
|
||||||
"nozzle_volume": "151.32",
|
"nozzle_volume": "151.32",
|
||||||
"parking_pos_retraction": "92",
|
"parking_pos_retraction": "92",
|
||||||
"print_host_webui": "",
|
"print_host_webui": "",
|
||||||
|
|||||||
@@ -116,7 +116,7 @@
|
|||||||
"0.08"
|
"0.08"
|
||||||
],
|
],
|
||||||
"nozzle_hrc": "0",
|
"nozzle_hrc": "0",
|
||||||
"nozzle_type": "brass",
|
"nozzle_type": "hardened_steel",
|
||||||
"nozzle_volume": "151.32",
|
"nozzle_volume": "151.32",
|
||||||
"parking_pos_retraction": "92",
|
"parking_pos_retraction": "92",
|
||||||
"print_host_webui": "",
|
"print_host_webui": "",
|
||||||
|
|||||||
@@ -68,258 +68,6 @@
|
|||||||
"name": "fdm_filament_pla",
|
"name": "fdm_filament_pla",
|
||||||
"sub_path": "filament/base/fdm_filament_pla.json"
|
"sub_path": "filament/base/fdm_filament_pla.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "FilAr PLA @base",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA @base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Bronce",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Bronce.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Gris Plata",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Gris Plata.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Cobre",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Cobre.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Titanio",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Titanio.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Tabaco",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Tabaco.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Cafe con Leche",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Cafe con Leche.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Manteca",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Manteca.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Marron Oxido",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Marron Oxido.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Carpincho",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Carpincho.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Rosa Amaranto",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Rosa Amaranto.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Rosa Flamenco",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Rosa Flamenco.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Piel",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Piel.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Verde FilAr",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Verde FilAr.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Verde Manzana",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Verde Manzana.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Verde Pixel",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Verde Pixel.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Verde Oliva",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Verde Oliva.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Blanco Antartida",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Blanco Antartida.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Blanco Calido",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Blanco Calido.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Negro Azabache",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Negro Azabache.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Naranja Tigre",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Naranja Tigre.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Rojo de Carreras",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Rojo de Carreras.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Amarillo Lirio",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Amarillo Lirio.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Violeta Jacaranda",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Violeta Jacaranda.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Gris Pizarra",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Gris Pizarra.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Gris Ceniza",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Gris Ceniza.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Azul Francia",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Azul Francia.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Celeste Cielo",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Celeste Cielo.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Oro",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Oro.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA Dorado",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA Dorado.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA-mate @base",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA-mate @base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA-mate Amarillo",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA-mate Amarillo.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA-mate Azul",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA-mate Azul.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA-mate Beige",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA-mate Beige.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA-mate Blanco",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA-mate Blanco.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA-mate Bordo",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA-mate Bordo.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA-mate Celeste Cielo",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA-mate Celeste Cielo.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA-mate Chocolate",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA-mate Chocolate.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA-mate Gris",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA-mate Gris.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA-mate Marron",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA-mate Marron.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA-mate Naranja",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA-mate Naranja.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA-mate Negro",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA-mate Negro.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA-mate Piel",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA-mate Piel.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA-mate Rojo",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA-mate Rojo.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA-mate Rosa",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA-mate Rosa.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA-mate Uva",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA-mate Uva.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA-mate Verde",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA-mate Verde.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PLA-mate Violeta",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PLA-mate Violeta.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PETG @base",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PETG @base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PETG Amarillo Lima",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PETG Amarillo Lima.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PETG Amarillo Radiante",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PETG Amarillo Radiante.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PETG Azul Boreal",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PETG Azul Boreal.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PETG Azul Francia",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PETG Azul Francia.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PETG Azul Imperial",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PETG Azul Imperial.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PETG Blanco Antartida",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PETG Blanco Antartida.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PETG Cian",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PETG Cian.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PETG Coral",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PETG Coral.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PETG Cristal",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PETG Cristal.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PETG Gris Ceniza",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PETG Gris Ceniza.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PETG Gris Plata",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PETG Gris Plata.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PETG Magenta",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PETG Magenta.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PETG Negro Azabache",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PETG Negro Azabache.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "FilAr PETG Rojo Carmesi",
|
|
||||||
"sub_path": "filament/FilAr/FilAr PETG Rojo Carmesi.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "fdm_filament_pp",
|
"name": "fdm_filament_pp",
|
||||||
"sub_path": "filament/base/fdm_filament_pp.json"
|
"sub_path": "filament/base/fdm_filament_pp.json"
|
||||||
@@ -588,10 +336,6 @@
|
|||||||
"name": "Generic PE-CF @base",
|
"name": "Generic PE-CF @base",
|
||||||
"sub_path": "filament/Generic PE-CF @base.json"
|
"sub_path": "filament/Generic PE-CF @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PE-CF @System",
|
|
||||||
"sub_path": "filament/Generic PE-CF @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "AliZ PETG @base",
|
"name": "AliZ PETG @base",
|
||||||
"sub_path": "filament/AliZ/AliZ PETG @base.json"
|
"sub_path": "filament/AliZ/AliZ PETG @base.json"
|
||||||
@@ -672,6 +416,10 @@
|
|||||||
"name": "Fiberon PETG-rCF @base",
|
"name": "Fiberon PETG-rCF @base",
|
||||||
"sub_path": "filament/Polymaker/Fiberon PETG-rCF @base.json"
|
"sub_path": "filament/Polymaker/Fiberon PETG-rCF @base.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PETG @base",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PETG @base.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PETG @System",
|
"name": "Generic PETG @System",
|
||||||
"sub_path": "filament/Generic PETG @System.json"
|
"sub_path": "filament/Generic PETG @System.json"
|
||||||
@@ -680,18 +428,10 @@
|
|||||||
"name": "Generic PETG HF @base",
|
"name": "Generic PETG HF @base",
|
||||||
"sub_path": "filament/Generic PETG HF @base.json"
|
"sub_path": "filament/Generic PETG HF @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PETG HF @System",
|
|
||||||
"sub_path": "filament/Generic PETG HF @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PETG-CF @base",
|
"name": "Generic PETG-CF @base",
|
||||||
"sub_path": "filament/Generic PETG-CF @base.json"
|
"sub_path": "filament/Generic PETG-CF @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PETG-CF @System",
|
|
||||||
"sub_path": "filament/Generic PETG-CF @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "GreenGate3D PETG @base",
|
"name": "GreenGate3D PETG @base",
|
||||||
"sub_path": "filament/GreenGate3D/GreenGate3D PETG @base.json"
|
"sub_path": "filament/GreenGate3D/GreenGate3D PETG @base.json"
|
||||||
@@ -868,6 +608,14 @@
|
|||||||
"name": "FILL3D PLA Turbo @base",
|
"name": "FILL3D PLA Turbo @base",
|
||||||
"sub_path": "filament/FILL3D/FILL3D PLA Turbo @base.json"
|
"sub_path": "filament/FILL3D/FILL3D PLA Turbo @base.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA @base",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA @base.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA-mate @base",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA-mate @base.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PLA @System",
|
"name": "Generic PLA @System",
|
||||||
"sub_path": "filament/Generic PLA @System.json"
|
"sub_path": "filament/Generic PLA @System.json"
|
||||||
@@ -880,10 +628,6 @@
|
|||||||
"name": "Generic PLA Matte @base",
|
"name": "Generic PLA Matte @base",
|
||||||
"sub_path": "filament/Generic PLA Matte @base.json"
|
"sub_path": "filament/Generic PLA Matte @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PLA Matte @System",
|
|
||||||
"sub_path": "filament/Generic PLA Matte @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PLA-CF @System",
|
"name": "Generic PLA-CF @System",
|
||||||
"sub_path": "filament/Generic PLA-CF @System.json"
|
"sub_path": "filament/Generic PLA-CF @System.json"
|
||||||
@@ -1092,18 +836,10 @@
|
|||||||
"name": "Generic PP-CF @base",
|
"name": "Generic PP-CF @base",
|
||||||
"sub_path": "filament/Generic PP-CF @base.json"
|
"sub_path": "filament/Generic PP-CF @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PP-CF @System",
|
|
||||||
"sub_path": "filament/Generic PP-CF @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PP-GF @base",
|
"name": "Generic PP-GF @base",
|
||||||
"sub_path": "filament/Generic PP-GF @base.json"
|
"sub_path": "filament/Generic PP-GF @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PP-GF @System",
|
|
||||||
"sub_path": "filament/Generic PP-GF @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Bambu PPA-CF @base",
|
"name": "Bambu PPA-CF @base",
|
||||||
"sub_path": "filament/Bambu/Bambu PPA-CF @base.json"
|
"sub_path": "filament/Bambu/Bambu PPA-CF @base.json"
|
||||||
@@ -1292,10 +1028,6 @@
|
|||||||
"name": "Elegoo ASA-CF @base",
|
"name": "Elegoo ASA-CF @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo ASA-CF @base.json"
|
"sub_path": "filament/Elegoo/Elegoo ASA-CF @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo ASA-CF @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo ASA-CF @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Overture ASA @System",
|
"name": "Overture ASA @System",
|
||||||
"sub_path": "filament/Overture/Overture ASA @System.json"
|
"sub_path": "filament/Overture/Overture ASA @System.json"
|
||||||
@@ -1388,14 +1120,14 @@
|
|||||||
"name": "Elegoo PC-FR @base",
|
"name": "Elegoo PC-FR @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PC-FR @base.json"
|
"sub_path": "filament/Elegoo/Elegoo PC-FR @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo PC-FR @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo PC-FR @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "COEX PCTG PRIME @System",
|
"name": "COEX PCTG PRIME @System",
|
||||||
"sub_path": "filament/COEX/COEX PCTG PRIME @System.json"
|
"sub_path": "filament/COEX/COEX PCTG PRIME @System.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PE-CF @System",
|
||||||
|
"sub_path": "filament/Generic PE-CF @System.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "AliZ PETG @System",
|
"name": "AliZ PETG @System",
|
||||||
"sub_path": "filament/AliZ/AliZ PETG @System.json"
|
"sub_path": "filament/AliZ/AliZ PETG @System.json"
|
||||||
@@ -1448,10 +1180,6 @@
|
|||||||
"name": "Elegoo PET-CF @base",
|
"name": "Elegoo PET-CF @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PET-CF @base.json"
|
"sub_path": "filament/Elegoo/Elegoo PET-CF @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo PET-CF @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo PET-CF @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Elegoo PETG @System",
|
"name": "Elegoo PETG @System",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PETG @System.json"
|
"sub_path": "filament/Elegoo/Elegoo PETG @System.json"
|
||||||
@@ -1460,50 +1188,26 @@
|
|||||||
"name": "Elegoo PETG HF @base",
|
"name": "Elegoo PETG HF @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PETG HF @base.json"
|
"sub_path": "filament/Elegoo/Elegoo PETG HF @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo PETG HF @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo PETG HF @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Elegoo PETG PRO @base",
|
"name": "Elegoo PETG PRO @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PETG PRO @base.json"
|
"sub_path": "filament/Elegoo/Elegoo PETG PRO @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo PETG PRO @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo PETG PRO @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Elegoo PETG Translucent @base",
|
"name": "Elegoo PETG Translucent @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PETG Translucent @base.json"
|
"sub_path": "filament/Elegoo/Elegoo PETG Translucent @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo PETG Translucent @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo PETG Translucent @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Elegoo PETG-CF @base",
|
"name": "Elegoo PETG-CF @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PETG-CF @base.json"
|
"sub_path": "filament/Elegoo/Elegoo PETG-CF @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo PETG-CF @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo PETG-CF @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Elegoo PETG-GF @base",
|
"name": "Elegoo PETG-GF @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PETG-GF @base.json"
|
"sub_path": "filament/Elegoo/Elegoo PETG-GF @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo PETG-GF @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo PETG-GF @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Elegoo Rapid PETG @base",
|
"name": "Elegoo Rapid PETG @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo Rapid PETG @base.json"
|
"sub_path": "filament/Elegoo/Elegoo Rapid PETG @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo Rapid PETG @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo Rapid PETG @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "FDplast PETG @System",
|
"name": "FDplast PETG @System",
|
||||||
"sub_path": "filament/FDplast/FDplast PETG @System.json"
|
"sub_path": "filament/FDplast/FDplast PETG @System.json"
|
||||||
@@ -1528,6 +1232,70 @@
|
|||||||
"name": "Fiberon PETG-rCF @System",
|
"name": "Fiberon PETG-rCF @System",
|
||||||
"sub_path": "filament/Polymaker/Fiberon PETG-rCF @System.json"
|
"sub_path": "filament/Polymaker/Fiberon PETG-rCF @System.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PETG Amarillo Lima",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PETG Amarillo Lima.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PETG Amarillo Radiante",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PETG Amarillo Radiante.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PETG Azul Boreal",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PETG Azul Boreal.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PETG Azul Francia",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PETG Azul Francia.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PETG Azul Imperial",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PETG Azul Imperial.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PETG Blanco Antartida",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PETG Blanco Antartida.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PETG Cian",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PETG Cian.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PETG Coral",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PETG Coral.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PETG Cristal",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PETG Cristal.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PETG Gris Ceniza",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PETG Gris Ceniza.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PETG Gris Plata",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PETG Gris Plata.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PETG Magenta",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PETG Magenta.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PETG Negro Azabache",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PETG Negro Azabache.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PETG Rojo Carmesi",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PETG Rojo Carmesi.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG HF @System",
|
||||||
|
"sub_path": "filament/Generic PETG HF @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG-CF @System",
|
||||||
|
"sub_path": "filament/Generic PETG-CF @System.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "GreenGate3D PETG @System",
|
"name": "GreenGate3D PETG @System",
|
||||||
"sub_path": "filament/GreenGate3D/GreenGate3D PETG @System.json"
|
"sub_path": "filament/GreenGate3D/GreenGate3D PETG @System.json"
|
||||||
@@ -1656,106 +1424,54 @@
|
|||||||
"name": "Elegoo PLA Basic @base",
|
"name": "Elegoo PLA Basic @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA Basic @base.json"
|
"sub_path": "filament/Elegoo/Elegoo PLA Basic @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo PLA Basic @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA Basic @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Elegoo PLA Galaxy @base",
|
"name": "Elegoo PLA Galaxy @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA Galaxy @base.json"
|
"sub_path": "filament/Elegoo/Elegoo PLA Galaxy @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo PLA Galaxy @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA Galaxy @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Elegoo PLA Glow @base",
|
"name": "Elegoo PLA Glow @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA Glow @base.json"
|
"sub_path": "filament/Elegoo/Elegoo PLA Glow @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo PLA Glow @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA Glow @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Elegoo PLA Marble @base",
|
"name": "Elegoo PLA Marble @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA Marble @base.json"
|
"sub_path": "filament/Elegoo/Elegoo PLA Marble @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo PLA Marble @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA Marble @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Elegoo PLA Matte @base",
|
"name": "Elegoo PLA Matte @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA Matte @base.json"
|
"sub_path": "filament/Elegoo/Elegoo PLA Matte @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo PLA Matte @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA Matte @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Elegoo PLA PRO @base",
|
"name": "Elegoo PLA PRO @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA PRO @base.json"
|
"sub_path": "filament/Elegoo/Elegoo PLA PRO @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo PLA PRO @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA PRO @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Elegoo PLA Silk @base",
|
"name": "Elegoo PLA Silk @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA Silk @base.json"
|
"sub_path": "filament/Elegoo/Elegoo PLA Silk @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo PLA Silk @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA Silk @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Elegoo PLA Sparkle @base",
|
"name": "Elegoo PLA Sparkle @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA Sparkle @base.json"
|
"sub_path": "filament/Elegoo/Elegoo PLA Sparkle @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo PLA Sparkle @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA Sparkle @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Elegoo PLA Translucent2 @base",
|
"name": "Elegoo PLA Translucent2 @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA Translucent2 @base.json"
|
"sub_path": "filament/Elegoo/Elegoo PLA Translucent2 @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo PLA Translucent2 @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA Translucent2 @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Elegoo PLA Wood @base",
|
"name": "Elegoo PLA Wood @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA Wood @base.json"
|
"sub_path": "filament/Elegoo/Elegoo PLA Wood @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo PLA Wood @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA Wood @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Elegoo PLA+ @base",
|
"name": "Elegoo PLA+ @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA+ @base.json"
|
"sub_path": "filament/Elegoo/Elegoo PLA+ @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo PLA+ @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA+ @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Elegoo PLA-CF @base",
|
"name": "Elegoo PLA-CF @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA-CF @base.json"
|
"sub_path": "filament/Elegoo/Elegoo PLA-CF @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo PLA-CF @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo PLA-CF @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Elegoo Rapid PLA+ @base",
|
"name": "Elegoo Rapid PLA+ @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo Rapid PLA+ @base.json"
|
"sub_path": "filament/Elegoo/Elegoo Rapid PLA+ @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo Rapid PLA+ @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo Rapid PLA+ @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "FDplast PLA @System",
|
"name": "FDplast PLA @System",
|
||||||
"sub_path": "filament/FDplast/FDplast PLA @System.json"
|
"sub_path": "filament/FDplast/FDplast PLA @System.json"
|
||||||
@@ -1768,6 +1484,194 @@
|
|||||||
"name": "FILL3D PLA Turbo @System",
|
"name": "FILL3D PLA Turbo @System",
|
||||||
"sub_path": "filament/FILL3D/FILL3D PLA Turbo @System.json"
|
"sub_path": "filament/FILL3D/FILL3D PLA Turbo @System.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Amarillo Lirio",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Amarillo Lirio.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Azul Francia",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Azul Francia.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Blanco Antartida",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Blanco Antartida.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Blanco Calido",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Blanco Calido.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Bronce",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Bronce.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Cafe con Leche",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Cafe con Leche.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Carpincho",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Carpincho.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Celeste Cielo",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Celeste Cielo.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Cobre",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Cobre.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Dorado",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Dorado.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Gris Ceniza",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Gris Ceniza.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Gris Pizarra",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Gris Pizarra.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Gris Plata",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Gris Plata.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Manteca",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Manteca.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Marron Oxido",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Marron Oxido.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Naranja Tigre",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Naranja Tigre.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Negro Azabache",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Negro Azabache.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Oro",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Oro.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Piel",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Piel.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Rojo de Carreras",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Rojo de Carreras.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Rosa Amaranto",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Rosa Amaranto.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Rosa Flamenco",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Rosa Flamenco.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Tabaco",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Tabaco.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Titanio",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Titanio.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Verde FilAr",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Verde FilAr.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Verde Manzana",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Verde Manzana.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Verde Oliva",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Verde Oliva.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Verde Pixel",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Verde Pixel.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA Violeta Jacaranda",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA Violeta Jacaranda.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA-mate Amarillo",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA-mate Amarillo.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA-mate Azul",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA-mate Azul.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA-mate Beige",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA-mate Beige.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA-mate Blanco",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA-mate Blanco.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA-mate Bordo",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA-mate Bordo.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA-mate Celeste Cielo",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA-mate Celeste Cielo.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA-mate Chocolate",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA-mate Chocolate.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA-mate Gris",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA-mate Gris.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA-mate Marron",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA-mate Marron.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA-mate Naranja",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA-mate Naranja.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA-mate Negro",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA-mate Negro.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA-mate Piel",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA-mate Piel.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA-mate Rojo",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA-mate Rojo.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA-mate Rosa",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA-mate Rosa.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA-mate Uva",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA-mate Uva.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA-mate Verde",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA-mate Verde.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FilAr PLA-mate Violeta",
|
||||||
|
"sub_path": "filament/FilAr/FilAr PLA-mate Violeta.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA Matte @System",
|
||||||
|
"sub_path": "filament/Generic PLA Matte @System.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "NIT PLA @System",
|
"name": "NIT PLA @System",
|
||||||
"sub_path": "filament/NIT/NIT PLA @System.json"
|
"sub_path": "filament/NIT/NIT PLA @System.json"
|
||||||
@@ -1876,10 +1780,6 @@
|
|||||||
"name": "PolyLite Dual PLA @base",
|
"name": "PolyLite Dual PLA @base",
|
||||||
"sub_path": "filament/Polymaker/PolyLite Dual PLA @base.json"
|
"sub_path": "filament/Polymaker/PolyLite Dual PLA @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "PolyLite Dual PLA @System",
|
|
||||||
"sub_path": "filament/Polymaker/PolyLite Dual PLA @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "PolyLite PLA @System",
|
"name": "PolyLite PLA @System",
|
||||||
"sub_path": "filament/Polymaker/PolyLite PLA @System.json"
|
"sub_path": "filament/Polymaker/PolyLite PLA @System.json"
|
||||||
@@ -1976,6 +1876,14 @@
|
|||||||
"name": "FILL3D PPCF @System",
|
"name": "FILL3D PPCF @System",
|
||||||
"sub_path": "filament/FILL3D/FILL3D PPCF @System.json"
|
"sub_path": "filament/FILL3D/FILL3D PPCF @System.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PP-CF @System",
|
||||||
|
"sub_path": "filament/Generic PP-CF @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PP-GF @System",
|
||||||
|
"sub_path": "filament/Generic PP-GF @System.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Bambu PPA-CF @System",
|
"name": "Bambu PPA-CF @System",
|
||||||
"sub_path": "filament/Bambu/Bambu PPA-CF @System.json"
|
"sub_path": "filament/Bambu/Bambu PPA-CF @System.json"
|
||||||
@@ -2024,10 +1932,6 @@
|
|||||||
"name": "Elegoo Rapid TPU 95A @base",
|
"name": "Elegoo Rapid TPU 95A @base",
|
||||||
"sub_path": "filament/Elegoo/Elegoo Rapid TPU 95A @base.json"
|
"sub_path": "filament/Elegoo/Elegoo Rapid TPU 95A @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Elegoo Rapid TPU 95A @System",
|
|
||||||
"sub_path": "filament/Elegoo/Elegoo Rapid TPU 95A @System.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Elegoo TPU 95A @System",
|
"name": "Elegoo TPU 95A @System",
|
||||||
"sub_path": "filament/Elegoo/Elegoo TPU 95A @System.json"
|
"sub_path": "filament/Elegoo/Elegoo TPU 95A @System.json"
|
||||||
@@ -2040,6 +1944,14 @@
|
|||||||
"name": "Overture TPU @System",
|
"name": "Overture TPU @System",
|
||||||
"sub_path": "filament/Overture/Overture TPU @System.json"
|
"sub_path": "filament/Overture/Overture TPU @System.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo ASA-CF @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo ASA-CF @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo PC-FR @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo PC-FR @System.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "AliZ PETG-CF @System",
|
"name": "AliZ PETG-CF @System",
|
||||||
"sub_path": "filament/AliZ/AliZ PETG-CF @System.json"
|
"sub_path": "filament/AliZ/AliZ PETG-CF @System.json"
|
||||||
@@ -2048,9 +1960,97 @@
|
|||||||
"name": "AliZ PETG-Metal @System",
|
"name": "AliZ PETG-Metal @System",
|
||||||
"sub_path": "filament/AliZ/AliZ PETG-Metal @System.json"
|
"sub_path": "filament/AliZ/AliZ PETG-Metal @System.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo PET-CF @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo PET-CF @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo PETG HF @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo PETG HF @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo PETG PRO @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo PETG PRO @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo PETG Translucent @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo PETG Translucent @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo PETG-CF @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo PETG-CF @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo PETG-GF @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo PETG-GF @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo Rapid PETG @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo Rapid PETG @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo PLA Basic @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo PLA Basic @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo PLA Galaxy @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo PLA Galaxy @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo PLA Glow @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo PLA Glow @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo PLA Marble @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo PLA Marble @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo PLA Matte @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo PLA Matte @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo PLA PRO @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo PLA PRO @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo PLA Silk @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo PLA Silk @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo PLA Sparkle @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo PLA Sparkle @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo PLA Translucent2 @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo PLA Translucent2 @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo PLA Wood @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo PLA Wood @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo PLA+ @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo PLA+ @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo PLA-CF @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo PLA-CF @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo Rapid PLA+ @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo Rapid PLA+ @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "PolyLite Dual PLA @System",
|
||||||
|
"sub_path": "filament/Polymaker/PolyLite Dual PLA @System.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "COEX PLA+Silk @System",
|
"name": "COEX PLA+Silk @System",
|
||||||
"sub_path": "filament/COEX/COEX PLA+Silk @System.json"
|
"sub_path": "filament/COEX/COEX PLA+Silk @System.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Elegoo Rapid TPU 95A @System",
|
||||||
|
"sub_path": "filament/Elegoo/Elegoo Rapid TPU 95A @System.json"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"process_list": [],
|
"process_list": [],
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Phrozen",
|
"name": "Phrozen",
|
||||||
"version": "02.04.00.03",
|
"version": "02.04.00.04",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Phrozen configurations",
|
"description": "Phrozen configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|||||||
@@ -1,139 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "machine",
|
|
||||||
"name": "fdm_machine_common",
|
|
||||||
"from": "system",
|
|
||||||
"instantiation": "false",
|
|
||||||
"gcode_flavor": "marlin",
|
|
||||||
"machine_start_gcode": "",
|
|
||||||
"machine_end_gcode": "",
|
|
||||||
"extruder_colour": [
|
|
||||||
"#018001"
|
|
||||||
],
|
|
||||||
"extruder_offset": [
|
|
||||||
"0x0"
|
|
||||||
],
|
|
||||||
"machine_max_acceleration_e": [
|
|
||||||
"5000",
|
|
||||||
"5000"
|
|
||||||
],
|
|
||||||
"machine_max_acceleration_extruding": [
|
|
||||||
"2000",
|
|
||||||
"2000"
|
|
||||||
],
|
|
||||||
"machine_max_acceleration_retracting": [
|
|
||||||
"5000",
|
|
||||||
"5000"
|
|
||||||
],
|
|
||||||
"machine_max_acceleration_travel": [
|
|
||||||
"3000",
|
|
||||||
"3000"
|
|
||||||
],
|
|
||||||
"machine_max_acceleration_x": [
|
|
||||||
"2000",
|
|
||||||
"2000"
|
|
||||||
],
|
|
||||||
"machine_max_acceleration_y": [
|
|
||||||
"2000",
|
|
||||||
"2000"
|
|
||||||
],
|
|
||||||
"machine_max_acceleration_z": [
|
|
||||||
"300",
|
|
||||||
"200"
|
|
||||||
],
|
|
||||||
"machine_max_speed_e": [
|
|
||||||
"25",
|
|
||||||
"25"
|
|
||||||
],
|
|
||||||
"machine_max_speed_x": [
|
|
||||||
"300",
|
|
||||||
"200"
|
|
||||||
],
|
|
||||||
"machine_max_speed_y": [
|
|
||||||
"300",
|
|
||||||
"200"
|
|
||||||
],
|
|
||||||
"machine_max_speed_z": [
|
|
||||||
"12",
|
|
||||||
"12"
|
|
||||||
],
|
|
||||||
"machine_max_jerk_e": [
|
|
||||||
"2.5",
|
|
||||||
"2.5"
|
|
||||||
],
|
|
||||||
"machine_max_jerk_x": [
|
|
||||||
"9",
|
|
||||||
"9"
|
|
||||||
],
|
|
||||||
"machine_max_jerk_y": [
|
|
||||||
"9",
|
|
||||||
"9"
|
|
||||||
],
|
|
||||||
"machine_max_jerk_z": [
|
|
||||||
"0.2",
|
|
||||||
"0.4"
|
|
||||||
],
|
|
||||||
"machine_min_extruding_rate": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"machine_min_travel_rate": [
|
|
||||||
"0",
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"max_layer_height": [
|
|
||||||
"0.3"
|
|
||||||
],
|
|
||||||
"min_layer_height": [
|
|
||||||
"0.08"
|
|
||||||
],
|
|
||||||
"printable_height": "300",
|
|
||||||
"extruder_clearance_radius": "65",
|
|
||||||
"extruder_clearance_height_to_rod": "36",
|
|
||||||
"extruder_clearance_height_to_lid": "140",
|
|
||||||
"nozzle_diameter": [
|
|
||||||
"0.4"
|
|
||||||
],
|
|
||||||
"printer_settings_id": "",
|
|
||||||
"printer_technology": "FFF",
|
|
||||||
"printer_variant": "0.4",
|
|
||||||
"retraction_minimum_travel": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"retract_before_wipe": [
|
|
||||||
"70%"
|
|
||||||
],
|
|
||||||
"retract_when_changing_layer": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"retraction_length": [
|
|
||||||
"0.8"
|
|
||||||
],
|
|
||||||
"retract_length_toolchange": [
|
|
||||||
"2"
|
|
||||||
],
|
|
||||||
"z_hop": [
|
|
||||||
"0.4"
|
|
||||||
],
|
|
||||||
"retract_restart_extra": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"retract_restart_extra_toolchange": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"retraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"deretraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"silent_mode": "0",
|
|
||||||
"single_extruder_multi_material": "1",
|
|
||||||
"change_filament_gcode": "",
|
|
||||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
|
|
||||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
|
||||||
"machine_pause_gcode": "M400 U1\n",
|
|
||||||
"wipe": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"z_hop_types": "Normal Lift"
|
|
||||||
}
|
|
||||||
+336
-336
@@ -1448,34 +1448,10 @@
|
|||||||
"name": "fdm_filament_tpu",
|
"name": "fdm_filament_tpu",
|
||||||
"sub_path": "filament/fdm_filament_tpu.json"
|
"sub_path": "filament/fdm_filament_tpu.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic ABS @Prusa base",
|
|
||||||
"sub_path": "filament/Generic ABS @Prusa base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic ABS @Prusa",
|
|
||||||
"sub_path": "filament/Generic ABS @Prusa.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic ABS @Prusa CORE One",
|
"name": "Generic ABS @Prusa CORE One",
|
||||||
"sub_path": "filament/Generic ABS @Prusa CORE One.json"
|
"sub_path": "filament/Generic ABS @Prusa CORE One.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic ABS @Prusa MINIIS",
|
|
||||||
"sub_path": "filament/Generic ABS @Prusa MINIIS.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic ABS @Prusa MINIIS 0.25",
|
|
||||||
"sub_path": "filament/Generic ABS @Prusa MINIIS 0.25.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic ABS @Prusa MINIIS 0.6",
|
|
||||||
"sub_path": "filament/Generic ABS @Prusa MINIIS 0.6.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic ABS @Prusa MINIIS 0.8",
|
|
||||||
"sub_path": "filament/Generic ABS @Prusa MINIIS 0.8.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic ABS @Prusa MK3.5",
|
"name": "Generic ABS @Prusa MK3.5",
|
||||||
"sub_path": "filament/Generic ABS @Prusa MK3.5.json"
|
"sub_path": "filament/Generic ABS @Prusa MK3.5.json"
|
||||||
@@ -1492,37 +1468,13 @@
|
|||||||
"name": "Generic ABS @Prusa MK3.5 0.8",
|
"name": "Generic ABS @Prusa MK3.5 0.8",
|
||||||
"sub_path": "filament/Generic ABS @Prusa MK3.5 0.8.json"
|
"sub_path": "filament/Generic ABS @Prusa MK3.5 0.8.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic ABS @Prusa MK4",
|
|
||||||
"sub_path": "filament/Generic ABS @Prusa MK4.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic ABS @Prusa MK4S",
|
"name": "Generic ABS @Prusa MK4S",
|
||||||
"sub_path": "filament/Generic ABS @Prusa MK4S.json"
|
"sub_path": "filament/Generic ABS @Prusa MK4S.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic ABS @Prusa XL",
|
"name": "Generic ABS @Prusa base",
|
||||||
"sub_path": "filament/Generic ABS @Prusa XL.json"
|
"sub_path": "filament/Generic ABS @Prusa base.json"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic ABS @Prusa XL 5T",
|
|
||||||
"sub_path": "filament/Generic ABS @Prusa XL 5T.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic ABS HF @Prusa base",
|
|
||||||
"sub_path": "filament/Generic ABS HF @Prusa base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic ABS HF @Prusa MINIIS",
|
|
||||||
"sub_path": "filament/Generic ABS HF @Prusa MINIIS.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic ABS HF @Prusa MINIIS 0.6",
|
|
||||||
"sub_path": "filament/Generic ABS HF @Prusa MINIIS 0.6.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic ABS HF @Prusa MINIIS 0.8",
|
|
||||||
"sub_path": "filament/Generic ABS HF @Prusa MINIIS 0.8.json"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic ABS HF @Prusa MK3.5",
|
"name": "Generic ABS HF @Prusa MK3.5",
|
||||||
@@ -1536,6 +1488,10 @@
|
|||||||
"name": "Generic ABS HF @Prusa MK3.5 0.8",
|
"name": "Generic ABS HF @Prusa MK3.5 0.8",
|
||||||
"sub_path": "filament/Generic ABS HF @Prusa MK3.5 0.8.json"
|
"sub_path": "filament/Generic ABS HF @Prusa MK3.5 0.8.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ABS HF @Prusa base",
|
||||||
|
"sub_path": "filament/Generic ABS HF @Prusa base.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic ASA @Prusa",
|
"name": "Generic ASA @Prusa",
|
||||||
"sub_path": "filament/Generic ASA @Prusa.json"
|
"sub_path": "filament/Generic ASA @Prusa.json"
|
||||||
@@ -1584,22 +1540,6 @@
|
|||||||
"name": "Generic ASA @Prusa MK4S",
|
"name": "Generic ASA @Prusa MK4S",
|
||||||
"sub_path": "filament/Generic ASA @Prusa MK4S.json"
|
"sub_path": "filament/Generic ASA @Prusa MK4S.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic ASA HF @Prusa base",
|
|
||||||
"sub_path": "filament/Generic ASA HF @Prusa base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic ASA HF @Prusa MINIIS",
|
|
||||||
"sub_path": "filament/Generic ASA HF @Prusa MINIIS.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic ASA HF @Prusa MINIIS 0.6",
|
|
||||||
"sub_path": "filament/Generic ASA HF @Prusa MINIIS 0.6.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic ASA HF @Prusa MINIIS 0.8",
|
|
||||||
"sub_path": "filament/Generic ASA HF @Prusa MINIIS 0.8.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic ASA HF @Prusa MK3.5",
|
"name": "Generic ASA HF @Prusa MK3.5",
|
||||||
"sub_path": "filament/Generic ASA HF @Prusa MK3.5.json"
|
"sub_path": "filament/Generic ASA HF @Prusa MK3.5.json"
|
||||||
@@ -1612,6 +1552,10 @@
|
|||||||
"name": "Generic ASA HF @Prusa MK3.5 0.8",
|
"name": "Generic ASA HF @Prusa MK3.5 0.8",
|
||||||
"sub_path": "filament/Generic ASA HF @Prusa MK3.5 0.8.json"
|
"sub_path": "filament/Generic ASA HF @Prusa MK3.5 0.8.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ASA HF @Prusa base",
|
||||||
|
"sub_path": "filament/Generic ASA HF @Prusa base.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Prusament ASA @CORE One",
|
"name": "Prusament ASA @CORE One",
|
||||||
"sub_path": "filament/Prusament ASA @CORE One.json"
|
"sub_path": "filament/Prusament ASA @CORE One.json"
|
||||||
@@ -1636,30 +1580,6 @@
|
|||||||
"name": "Generic TPU @Prusa CORE One",
|
"name": "Generic TPU @Prusa CORE One",
|
||||||
"sub_path": "filament/Generic TPU @Prusa CORE One.json"
|
"sub_path": "filament/Generic TPU @Prusa CORE One.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PA @Prusa base",
|
|
||||||
"sub_path": "filament/Generic PA @Prusa base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PA @Prusa",
|
|
||||||
"sub_path": "filament/Generic PA @Prusa.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PA @Prusa MINIIS",
|
|
||||||
"sub_path": "filament/Generic PA @Prusa MINIIS.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PA @Prusa MINIIS 0.25",
|
|
||||||
"sub_path": "filament/Generic PA @Prusa MINIIS 0.25.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PA @Prusa MINIIS 0.6",
|
|
||||||
"sub_path": "filament/Generic PA @Prusa MINIIS 0.6.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PA @Prusa MINIIS 0.8",
|
|
||||||
"sub_path": "filament/Generic PA @Prusa MINIIS 0.8.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PA @Prusa MK3.5",
|
"name": "Generic PA @Prusa MK3.5",
|
||||||
"sub_path": "filament/Generic PA @Prusa MK3.5.json"
|
"sub_path": "filament/Generic PA @Prusa MK3.5.json"
|
||||||
@@ -1677,28 +1597,8 @@
|
|||||||
"sub_path": "filament/Generic PA @Prusa MK3.5 0.8.json"
|
"sub_path": "filament/Generic PA @Prusa MK3.5 0.8.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PA-CF @Prusa base",
|
"name": "Generic PA @Prusa base",
|
||||||
"sub_path": "filament/Generic PA-CF @Prusa base.json"
|
"sub_path": "filament/Generic PA @Prusa base.json"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PA-CF @Prusa",
|
|
||||||
"sub_path": "filament/Generic PA-CF @Prusa.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PA-CF @Prusa MINIIS",
|
|
||||||
"sub_path": "filament/Generic PA-CF @Prusa MINIIS.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PA-CF @Prusa MINIIS 0.25",
|
|
||||||
"sub_path": "filament/Generic PA-CF @Prusa MINIIS 0.25.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PA-CF @Prusa MINIIS 0.6",
|
|
||||||
"sub_path": "filament/Generic PA-CF @Prusa MINIIS 0.6.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PA-CF @Prusa MINIIS 0.8",
|
|
||||||
"sub_path": "filament/Generic PA-CF @Prusa MINIIS 0.8.json"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PA-CF @Prusa MK3.5",
|
"name": "Generic PA-CF @Prusa MK3.5",
|
||||||
@@ -1716,6 +1616,10 @@
|
|||||||
"name": "Generic PA-CF @Prusa MK3.5 0.8",
|
"name": "Generic PA-CF @Prusa MK3.5 0.8",
|
||||||
"sub_path": "filament/Generic PA-CF @Prusa MK3.5 0.8.json"
|
"sub_path": "filament/Generic PA-CF @Prusa MK3.5 0.8.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PA-CF @Prusa base",
|
||||||
|
"sub_path": "filament/Generic PA-CF @Prusa base.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Prusament PA-CF @CORE One",
|
"name": "Prusament PA-CF @CORE One",
|
||||||
"sub_path": "filament/Prusament PA-CF @CORE One.json"
|
"sub_path": "filament/Prusament PA-CF @CORE One.json"
|
||||||
@@ -1764,22 +1668,6 @@
|
|||||||
"name": "Generic PC @Prusa MK3.5 0.8",
|
"name": "Generic PC @Prusa MK3.5 0.8",
|
||||||
"sub_path": "filament/Generic PC @Prusa MK3.5 0.8.json"
|
"sub_path": "filament/Generic PC @Prusa MK3.5 0.8.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PC HF @Prusa base",
|
|
||||||
"sub_path": "filament/Generic PC HF @Prusa base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PC HF @Prusa MINIIS",
|
|
||||||
"sub_path": "filament/Generic PC HF @Prusa MINIIS.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PC HF @Prusa MINIIS 0.6",
|
|
||||||
"sub_path": "filament/Generic PC HF @Prusa MINIIS 0.6.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PC HF @Prusa MINIIS 0.8",
|
|
||||||
"sub_path": "filament/Generic PC HF @Prusa MINIIS 0.8.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PC HF @Prusa MK3.5",
|
"name": "Generic PC HF @Prusa MK3.5",
|
||||||
"sub_path": "filament/Generic PC HF @Prusa MK3.5.json"
|
"sub_path": "filament/Generic PC HF @Prusa MK3.5.json"
|
||||||
@@ -1792,6 +1680,10 @@
|
|||||||
"name": "Generic PC HF @Prusa MK3.5 0.8",
|
"name": "Generic PC HF @Prusa MK3.5 0.8",
|
||||||
"sub_path": "filament/Generic PC HF @Prusa MK3.5 0.8.json"
|
"sub_path": "filament/Generic PC HF @Prusa MK3.5 0.8.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PC HF @Prusa base",
|
||||||
|
"sub_path": "filament/Generic PC HF @Prusa base.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Prusament PC Blend @CORE One",
|
"name": "Prusament PC Blend @CORE One",
|
||||||
"sub_path": "filament/Prusament PC Blend @CORE One.json"
|
"sub_path": "filament/Prusament PC Blend @CORE One.json"
|
||||||
@@ -1816,34 +1708,10 @@
|
|||||||
"name": "Prusament PC-CF @XL 5T",
|
"name": "Prusament PC-CF @XL 5T",
|
||||||
"sub_path": "filament/Prusament PC-CF @XL 5T.json"
|
"sub_path": "filament/Prusament PC-CF @XL 5T.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PETG @Prusa base",
|
|
||||||
"sub_path": "filament/Generic PETG @Prusa base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG @Prusa",
|
|
||||||
"sub_path": "filament/Generic PETG @Prusa.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PETG @Prusa CORE One",
|
"name": "Generic PETG @Prusa CORE One",
|
||||||
"sub_path": "filament/Generic PETG @Prusa CORE One.json"
|
"sub_path": "filament/Generic PETG @Prusa CORE One.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PETG @Prusa MINIIS",
|
|
||||||
"sub_path": "filament/Generic PETG @Prusa MINIIS.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG @Prusa MINIIS 0.25",
|
|
||||||
"sub_path": "filament/Generic PETG @Prusa MINIIS 0.25.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG @Prusa MINIIS 0.6",
|
|
||||||
"sub_path": "filament/Generic PETG @Prusa MINIIS 0.6.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG @Prusa MINIIS 0.8",
|
|
||||||
"sub_path": "filament/Generic PETG @Prusa MINIIS 0.8.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PETG @Prusa MK3.5",
|
"name": "Generic PETG @Prusa MK3.5",
|
||||||
"sub_path": "filament/Generic PETG @Prusa MK3.5.json"
|
"sub_path": "filament/Generic PETG @Prusa MK3.5.json"
|
||||||
@@ -1860,37 +1728,13 @@
|
|||||||
"name": "Generic PETG @Prusa MK3.5 0.8",
|
"name": "Generic PETG @Prusa MK3.5 0.8",
|
||||||
"sub_path": "filament/Generic PETG @Prusa MK3.5 0.8.json"
|
"sub_path": "filament/Generic PETG @Prusa MK3.5 0.8.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PETG @Prusa MK4",
|
|
||||||
"sub_path": "filament/Generic PETG @Prusa MK4.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PETG @Prusa MK4S",
|
"name": "Generic PETG @Prusa MK4S",
|
||||||
"sub_path": "filament/Generic PETG @Prusa MK4S.json"
|
"sub_path": "filament/Generic PETG @Prusa MK4S.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PETG @Prusa XL",
|
"name": "Generic PETG @Prusa base",
|
||||||
"sub_path": "filament/Generic PETG @Prusa XL.json"
|
"sub_path": "filament/Generic PETG @Prusa base.json"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG @Prusa XL 5T",
|
|
||||||
"sub_path": "filament/Generic PETG @Prusa XL 5T.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG HF @Prusa base",
|
|
||||||
"sub_path": "filament/Generic PETG HF @Prusa base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG HF @Prusa MINIIS",
|
|
||||||
"sub_path": "filament/Generic PETG HF @Prusa MINIIS.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG HF @Prusa MINIIS 0.6",
|
|
||||||
"sub_path": "filament/Generic PETG HF @Prusa MINIIS 0.6.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG HF @Prusa MINIIS 0.8",
|
|
||||||
"sub_path": "filament/Generic PETG HF @Prusa MINIIS 0.8.json"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PETG HF @Prusa MK3.5",
|
"name": "Generic PETG HF @Prusa MK3.5",
|
||||||
@@ -1904,6 +1748,10 @@
|
|||||||
"name": "Generic PETG HF @Prusa MK3.5 0.8",
|
"name": "Generic PETG HF @Prusa MK3.5 0.8",
|
||||||
"sub_path": "filament/Generic PETG HF @Prusa MK3.5 0.8.json"
|
"sub_path": "filament/Generic PETG HF @Prusa MK3.5 0.8.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG HF @Prusa base",
|
||||||
|
"sub_path": "filament/Generic PETG HF @Prusa base.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Prusament PETG @CORE One",
|
"name": "Prusament PETG @CORE One",
|
||||||
"sub_path": "filament/Prusament PETG @CORE One.json"
|
"sub_path": "filament/Prusament PETG @CORE One.json"
|
||||||
@@ -1912,42 +1760,10 @@
|
|||||||
"name": "Prusament PETG @base",
|
"name": "Prusament PETG @base",
|
||||||
"sub_path": "filament/Prusament PETG @base.json"
|
"sub_path": "filament/Prusament PETG @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Prusament PETG @XL",
|
|
||||||
"sub_path": "filament/Prusament PETG @XL.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Prusament PETG @XL 5T",
|
|
||||||
"sub_path": "filament/Prusament PETG @XL 5T.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA @Prusa base",
|
|
||||||
"sub_path": "filament/Generic PLA @Prusa base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA @Prusa",
|
|
||||||
"sub_path": "filament/Generic PLA @Prusa.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PLA @Prusa CORE One",
|
"name": "Generic PLA @Prusa CORE One",
|
||||||
"sub_path": "filament/Generic PLA @Prusa CORE One.json"
|
"sub_path": "filament/Generic PLA @Prusa CORE One.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PLA @Prusa MINIIS",
|
|
||||||
"sub_path": "filament/Generic PLA @Prusa MINIIS.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA @Prusa MINIIS 0.25",
|
|
||||||
"sub_path": "filament/Generic PLA @Prusa MINIIS 0.25.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA @Prusa MINIIS 0.6",
|
|
||||||
"sub_path": "filament/Generic PLA @Prusa MINIIS 0.6.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA @Prusa MINIIS 0.8",
|
|
||||||
"sub_path": "filament/Generic PLA @Prusa MINIIS 0.8.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PLA @Prusa MK3.5",
|
"name": "Generic PLA @Prusa MK3.5",
|
||||||
"sub_path": "filament/Generic PLA @Prusa MK3.5.json"
|
"sub_path": "filament/Generic PLA @Prusa MK3.5.json"
|
||||||
@@ -1964,37 +1780,13 @@
|
|||||||
"name": "Generic PLA @Prusa MK3.5 0.8",
|
"name": "Generic PLA @Prusa MK3.5 0.8",
|
||||||
"sub_path": "filament/Generic PLA @Prusa MK3.5 0.8.json"
|
"sub_path": "filament/Generic PLA @Prusa MK3.5 0.8.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PLA @Prusa MK4",
|
|
||||||
"sub_path": "filament/Generic PLA @Prusa MK4.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PLA @Prusa MK4S",
|
"name": "Generic PLA @Prusa MK4S",
|
||||||
"sub_path": "filament/Generic PLA @Prusa MK4S.json"
|
"sub_path": "filament/Generic PLA @Prusa MK4S.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PLA @Prusa XL",
|
"name": "Generic PLA @Prusa base",
|
||||||
"sub_path": "filament/Generic PLA @Prusa XL.json"
|
"sub_path": "filament/Generic PLA @Prusa base.json"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA @Prusa XL 5T",
|
|
||||||
"sub_path": "filament/Generic PLA @Prusa XL 5T.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA HF @Prusa base",
|
|
||||||
"sub_path": "filament/Generic PLA HF @Prusa base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA HF @Prusa MINIIS",
|
|
||||||
"sub_path": "filament/Generic PLA HF @Prusa MINIIS.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA HF @Prusa MINIIS 0.6",
|
|
||||||
"sub_path": "filament/Generic PLA HF @Prusa MINIIS 0.6.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA HF @Prusa MINIIS 0.8",
|
|
||||||
"sub_path": "filament/Generic PLA HF @Prusa MINIIS 0.8.json"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PLA HF @Prusa MK3.5",
|
"name": "Generic PLA HF @Prusa MK3.5",
|
||||||
@@ -2008,34 +1800,14 @@
|
|||||||
"name": "Generic PLA HF @Prusa MK3.5 0.8",
|
"name": "Generic PLA HF @Prusa MK3.5 0.8",
|
||||||
"sub_path": "filament/Generic PLA HF @Prusa MK3.5 0.8.json"
|
"sub_path": "filament/Generic PLA HF @Prusa MK3.5 0.8.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA HF @Prusa base",
|
||||||
|
"sub_path": "filament/Generic PLA HF @Prusa base.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PLA Silk @Prusa CORE One",
|
"name": "Generic PLA Silk @Prusa CORE One",
|
||||||
"sub_path": "filament/Generic PLA Silk @Prusa CORE One.json"
|
"sub_path": "filament/Generic PLA Silk @Prusa CORE One.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PLA-CF @Prusa base",
|
|
||||||
"sub_path": "filament/Generic PLA-CF @Prusa base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA-CF @Prusa",
|
|
||||||
"sub_path": "filament/Generic PLA-CF @Prusa.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA-CF @Prusa MINIIS",
|
|
||||||
"sub_path": "filament/Generic PLA-CF @Prusa MINIIS.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA-CF @Prusa MINIIS 0.25",
|
|
||||||
"sub_path": "filament/Generic PLA-CF @Prusa MINIIS 0.25.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA-CF @Prusa MINIIS 0.6",
|
|
||||||
"sub_path": "filament/Generic PLA-CF @Prusa MINIIS 0.6.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA-CF @Prusa MINIIS 0.8",
|
|
||||||
"sub_path": "filament/Generic PLA-CF @Prusa MINIIS 0.8.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PLA-CF @Prusa MK3.5",
|
"name": "Generic PLA-CF @Prusa MK3.5",
|
||||||
"sub_path": "filament/Generic PLA-CF @Prusa MK3.5.json"
|
"sub_path": "filament/Generic PLA-CF @Prusa MK3.5.json"
|
||||||
@@ -2052,6 +1824,10 @@
|
|||||||
"name": "Generic PLA-CF @Prusa MK3.5 0.8",
|
"name": "Generic PLA-CF @Prusa MK3.5 0.8",
|
||||||
"sub_path": "filament/Generic PLA-CF @Prusa MK3.5 0.8.json"
|
"sub_path": "filament/Generic PLA-CF @Prusa MK3.5 0.8.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA-CF @Prusa base",
|
||||||
|
"sub_path": "filament/Generic PLA-CF @Prusa base.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Prusament PLA @CORE One",
|
"name": "Prusament PLA @CORE One",
|
||||||
"sub_path": "filament/Prusament PLA @CORE One.json"
|
"sub_path": "filament/Prusament PLA @CORE One.json"
|
||||||
@@ -2060,14 +1836,6 @@
|
|||||||
"name": "Prusament PLA @base",
|
"name": "Prusament PLA @base",
|
||||||
"sub_path": "filament/Prusament PLA @base.json"
|
"sub_path": "filament/Prusament PLA @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Prusament PLA @XL",
|
|
||||||
"sub_path": "filament/Prusament PLA @XL.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Prusament PLA @XL 5T",
|
|
||||||
"sub_path": "filament/Prusament PLA @XL 5T.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Prusament rPLA @CORE One",
|
"name": "Prusament rPLA @CORE One",
|
||||||
"sub_path": "filament/Prusament rPLA @CORE One.json"
|
"sub_path": "filament/Prusament rPLA @CORE One.json"
|
||||||
@@ -2076,38 +1844,6 @@
|
|||||||
"name": "Prusament rPLA @base",
|
"name": "Prusament rPLA @base",
|
||||||
"sub_path": "filament/Prusament rPLA @base.json"
|
"sub_path": "filament/Prusament rPLA @base.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Prusament rPLA @XL",
|
|
||||||
"sub_path": "filament/Prusament rPLA @XL.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Prusament rPLA @XL 5T",
|
|
||||||
"sub_path": "filament/Prusament rPLA @XL 5T.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PVA @Prusa base",
|
|
||||||
"sub_path": "filament/Generic PVA @Prusa base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PVA @Prusa",
|
|
||||||
"sub_path": "filament/Generic PVA @Prusa.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PVA @Prusa MINIIS",
|
|
||||||
"sub_path": "filament/Generic PVA @Prusa MINIIS.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PVA @Prusa MINIIS 0.25",
|
|
||||||
"sub_path": "filament/Generic PVA @Prusa MINIIS 0.25.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PVA @Prusa MINIIS 0.6",
|
|
||||||
"sub_path": "filament/Generic PVA @Prusa MINIIS 0.6.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PVA @Prusa MINIIS 0.8",
|
|
||||||
"sub_path": "filament/Generic PVA @Prusa MINIIS 0.8.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PVA @Prusa MK3.5",
|
"name": "Generic PVA @Prusa MK3.5",
|
||||||
"sub_path": "filament/Generic PVA @Prusa MK3.5.json"
|
"sub_path": "filament/Generic PVA @Prusa MK3.5.json"
|
||||||
@@ -2125,20 +1861,8 @@
|
|||||||
"sub_path": "filament/Generic PVA @Prusa MK3.5 0.8.json"
|
"sub_path": "filament/Generic PVA @Prusa MK3.5 0.8.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PVA HF @Prusa base",
|
"name": "Generic PVA @Prusa base",
|
||||||
"sub_path": "filament/Generic PVA HF @Prusa base.json"
|
"sub_path": "filament/Generic PVA @Prusa base.json"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PVA HF @Prusa MINIIS",
|
|
||||||
"sub_path": "filament/Generic PVA HF @Prusa MINIIS.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PVA HF @Prusa MINIIS 0.6",
|
|
||||||
"sub_path": "filament/Generic PVA HF @Prusa MINIIS 0.6.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PVA HF @Prusa MINIIS 0.8",
|
|
||||||
"sub_path": "filament/Generic PVA HF @Prusa MINIIS 0.8.json"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PVA HF @Prusa MK3.5",
|
"name": "Generic PVA HF @Prusa MK3.5",
|
||||||
@@ -2152,6 +1876,10 @@
|
|||||||
"name": "Generic PVA HF @Prusa MK3.5 0.8",
|
"name": "Generic PVA HF @Prusa MK3.5 0.8",
|
||||||
"sub_path": "filament/Generic PVA HF @Prusa MK3.5 0.8.json"
|
"sub_path": "filament/Generic PVA HF @Prusa MK3.5 0.8.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PVA HF @Prusa base",
|
||||||
|
"sub_path": "filament/Generic PVA HF @Prusa base.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Prusament PVB @CORE One",
|
"name": "Prusament PVB @CORE One",
|
||||||
"sub_path": "filament/Prusament PVB @CORE One.json"
|
"sub_path": "filament/Prusament PVB @CORE One.json"
|
||||||
@@ -2164,42 +1892,26 @@
|
|||||||
"name": "Prusament PVB @XL 5T",
|
"name": "Prusament PVB @XL 5T",
|
||||||
"sub_path": "filament/Prusament PVB @XL 5T.json"
|
"sub_path": "filament/Prusament PVB @XL 5T.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic TPU @Prusa base",
|
|
||||||
"sub_path": "filament/Generic TPU @Prusa base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic TPU @Prusa",
|
|
||||||
"sub_path": "filament/Generic TPU @Prusa.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic TPU @Prusa MINIIS",
|
|
||||||
"sub_path": "filament/Generic TPU @Prusa MINIIS.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic TPU @Prusa MK3.5",
|
"name": "Generic TPU @Prusa MK3.5",
|
||||||
"sub_path": "filament/Generic TPU @Prusa MK3.5.json"
|
"sub_path": "filament/Generic TPU @Prusa MK3.5.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic TPU @Prusa MK4",
|
|
||||||
"sub_path": "filament/Generic TPU @Prusa MK4.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic TPU @Prusa MK4S",
|
"name": "Generic TPU @Prusa MK4S",
|
||||||
"sub_path": "filament/Generic TPU @Prusa MK4S.json"
|
"sub_path": "filament/Generic TPU @Prusa MK4S.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic TPU HF @Prusa base",
|
"name": "Generic TPU @Prusa base",
|
||||||
"sub_path": "filament/Generic TPU HF @Prusa base.json"
|
"sub_path": "filament/Generic TPU @Prusa base.json"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic TPU HF @Prusa MINIIS",
|
|
||||||
"sub_path": "filament/Generic TPU HF @Prusa MINIIS.json"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic TPU HF @Prusa MK3.5",
|
"name": "Generic TPU HF @Prusa MK3.5",
|
||||||
"sub_path": "filament/Generic TPU HF @Prusa MK3.5.json"
|
"sub_path": "filament/Generic TPU HF @Prusa MK3.5.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic TPU HF @Prusa base",
|
||||||
|
"sub_path": "filament/Generic TPU HF @Prusa base.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic ABS @Prusa CORE One 0.6",
|
"name": "Generic ABS @Prusa CORE One 0.6",
|
||||||
"sub_path": "filament/Generic ABS @Prusa CORE One 0.6.json"
|
"sub_path": "filament/Generic ABS @Prusa CORE One 0.6.json"
|
||||||
@@ -2236,6 +1948,50 @@
|
|||||||
"name": "Generic ABS @Prusa MK4S HF0.4",
|
"name": "Generic ABS @Prusa MK4S HF0.4",
|
||||||
"sub_path": "filament/Generic ABS @Prusa MK4S HF0.4.json"
|
"sub_path": "filament/Generic ABS @Prusa MK4S HF0.4.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ABS @Prusa",
|
||||||
|
"sub_path": "filament/Generic ABS @Prusa.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ABS @Prusa MINIIS",
|
||||||
|
"sub_path": "filament/Generic ABS @Prusa MINIIS.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ABS @Prusa MINIIS 0.25",
|
||||||
|
"sub_path": "filament/Generic ABS @Prusa MINIIS 0.25.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ABS @Prusa MINIIS 0.6",
|
||||||
|
"sub_path": "filament/Generic ABS @Prusa MINIIS 0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ABS @Prusa MINIIS 0.8",
|
||||||
|
"sub_path": "filament/Generic ABS @Prusa MINIIS 0.8.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ABS @Prusa MK4",
|
||||||
|
"sub_path": "filament/Generic ABS @Prusa MK4.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ABS @Prusa XL",
|
||||||
|
"sub_path": "filament/Generic ABS @Prusa XL.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ABS @Prusa XL 5T",
|
||||||
|
"sub_path": "filament/Generic ABS @Prusa XL 5T.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ABS HF @Prusa MINIIS",
|
||||||
|
"sub_path": "filament/Generic ABS HF @Prusa MINIIS.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ABS HF @Prusa MINIIS 0.6",
|
||||||
|
"sub_path": "filament/Generic ABS HF @Prusa MINIIS 0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ABS HF @Prusa MINIIS 0.8",
|
||||||
|
"sub_path": "filament/Generic ABS HF @Prusa MINIIS 0.8.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic ASA @Prusa CORE One 0.6",
|
"name": "Generic ASA @Prusa CORE One 0.6",
|
||||||
"sub_path": "filament/Generic ASA @Prusa CORE One 0.6.json"
|
"sub_path": "filament/Generic ASA @Prusa CORE One 0.6.json"
|
||||||
@@ -2272,6 +2028,18 @@
|
|||||||
"name": "Generic ASA @Prusa MK4S HF0.4",
|
"name": "Generic ASA @Prusa MK4S HF0.4",
|
||||||
"sub_path": "filament/Generic ASA @Prusa MK4S HF0.4.json"
|
"sub_path": "filament/Generic ASA @Prusa MK4S HF0.4.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ASA HF @Prusa MINIIS",
|
||||||
|
"sub_path": "filament/Generic ASA HF @Prusa MINIIS.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ASA HF @Prusa MINIIS 0.6",
|
||||||
|
"sub_path": "filament/Generic ASA HF @Prusa MINIIS 0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ASA HF @Prusa MINIIS 0.8",
|
||||||
|
"sub_path": "filament/Generic ASA HF @Prusa MINIIS 0.8.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Prusament ASA @CORE One 0.6",
|
"name": "Prusament ASA @CORE One 0.6",
|
||||||
"sub_path": "filament/Prusament ASA @CORE One 0.6.json"
|
"sub_path": "filament/Prusament ASA @CORE One 0.6.json"
|
||||||
@@ -2304,6 +2072,46 @@
|
|||||||
"name": "Generic TPU @Prusa CORE One 0.8",
|
"name": "Generic TPU @Prusa CORE One 0.8",
|
||||||
"sub_path": "filament/Generic TPU @Prusa CORE One 0.8.json"
|
"sub_path": "filament/Generic TPU @Prusa CORE One 0.8.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PA @Prusa",
|
||||||
|
"sub_path": "filament/Generic PA @Prusa.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PA @Prusa MINIIS",
|
||||||
|
"sub_path": "filament/Generic PA @Prusa MINIIS.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PA @Prusa MINIIS 0.25",
|
||||||
|
"sub_path": "filament/Generic PA @Prusa MINIIS 0.25.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PA @Prusa MINIIS 0.6",
|
||||||
|
"sub_path": "filament/Generic PA @Prusa MINIIS 0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PA @Prusa MINIIS 0.8",
|
||||||
|
"sub_path": "filament/Generic PA @Prusa MINIIS 0.8.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PA-CF @Prusa",
|
||||||
|
"sub_path": "filament/Generic PA-CF @Prusa.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PA-CF @Prusa MINIIS",
|
||||||
|
"sub_path": "filament/Generic PA-CF @Prusa MINIIS.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PA-CF @Prusa MINIIS 0.25",
|
||||||
|
"sub_path": "filament/Generic PA-CF @Prusa MINIIS 0.25.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PA-CF @Prusa MINIIS 0.6",
|
||||||
|
"sub_path": "filament/Generic PA-CF @Prusa MINIIS 0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PA-CF @Prusa MINIIS 0.8",
|
||||||
|
"sub_path": "filament/Generic PA-CF @Prusa MINIIS 0.8.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Prusament PA-CF @CORE One 0.6",
|
"name": "Prusament PA-CF @CORE One 0.6",
|
||||||
"sub_path": "filament/Prusament PA-CF @CORE One 0.6.json"
|
"sub_path": "filament/Prusament PA-CF @CORE One 0.6.json"
|
||||||
@@ -2312,6 +2120,18 @@
|
|||||||
"name": "Prusament PA-CF @CORE One 0.8",
|
"name": "Prusament PA-CF @CORE One 0.8",
|
||||||
"sub_path": "filament/Prusament PA-CF @CORE One 0.8.json"
|
"sub_path": "filament/Prusament PA-CF @CORE One 0.8.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PC HF @Prusa MINIIS",
|
||||||
|
"sub_path": "filament/Generic PC HF @Prusa MINIIS.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PC HF @Prusa MINIIS 0.6",
|
||||||
|
"sub_path": "filament/Generic PC HF @Prusa MINIIS 0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PC HF @Prusa MINIIS 0.8",
|
||||||
|
"sub_path": "filament/Generic PC HF @Prusa MINIIS 0.8.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Prusament PC Blend @CORE One 0.6",
|
"name": "Prusament PC Blend @CORE One 0.6",
|
||||||
"sub_path": "filament/Prusament PC Blend @CORE One 0.6.json"
|
"sub_path": "filament/Prusament PC Blend @CORE One 0.6.json"
|
||||||
@@ -2380,6 +2200,50 @@
|
|||||||
"name": "Generic PETG @Prusa MK4S HF0.4",
|
"name": "Generic PETG @Prusa MK4S HF0.4",
|
||||||
"sub_path": "filament/Generic PETG @Prusa MK4S HF0.4.json"
|
"sub_path": "filament/Generic PETG @Prusa MK4S HF0.4.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG @Prusa",
|
||||||
|
"sub_path": "filament/Generic PETG @Prusa.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG @Prusa MINIIS",
|
||||||
|
"sub_path": "filament/Generic PETG @Prusa MINIIS.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG @Prusa MINIIS 0.25",
|
||||||
|
"sub_path": "filament/Generic PETG @Prusa MINIIS 0.25.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG @Prusa MINIIS 0.6",
|
||||||
|
"sub_path": "filament/Generic PETG @Prusa MINIIS 0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG @Prusa MINIIS 0.8",
|
||||||
|
"sub_path": "filament/Generic PETG @Prusa MINIIS 0.8.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG @Prusa MK4",
|
||||||
|
"sub_path": "filament/Generic PETG @Prusa MK4.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG @Prusa XL",
|
||||||
|
"sub_path": "filament/Generic PETG @Prusa XL.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG @Prusa XL 5T",
|
||||||
|
"sub_path": "filament/Generic PETG @Prusa XL 5T.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG HF @Prusa MINIIS",
|
||||||
|
"sub_path": "filament/Generic PETG HF @Prusa MINIIS.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG HF @Prusa MINIIS 0.6",
|
||||||
|
"sub_path": "filament/Generic PETG HF @Prusa MINIIS 0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG HF @Prusa MINIIS 0.8",
|
||||||
|
"sub_path": "filament/Generic PETG HF @Prusa MINIIS 0.8.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Prusament PETG @CORE One 0.6",
|
"name": "Prusament PETG @CORE One 0.6",
|
||||||
"sub_path": "filament/Prusament PETG @CORE One 0.6.json"
|
"sub_path": "filament/Prusament PETG @CORE One 0.6.json"
|
||||||
@@ -2404,6 +2268,14 @@
|
|||||||
"name": "Prusament PETG @CORE One HF 0.8",
|
"name": "Prusament PETG @CORE One HF 0.8",
|
||||||
"sub_path": "filament/Prusament PETG @CORE One HF 0.8.json"
|
"sub_path": "filament/Prusament PETG @CORE One HF 0.8.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Prusament PETG @XL",
|
||||||
|
"sub_path": "filament/Prusament PETG @XL.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Prusament PETG @XL 5T",
|
||||||
|
"sub_path": "filament/Prusament PETG @XL 5T.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PLA @Prusa CORE One 0.6",
|
"name": "Generic PLA @Prusa CORE One 0.6",
|
||||||
"sub_path": "filament/Generic PLA @Prusa CORE One 0.6.json"
|
"sub_path": "filament/Generic PLA @Prusa CORE One 0.6.json"
|
||||||
@@ -2444,6 +2316,50 @@
|
|||||||
"name": "Generic PLA Silk @Prusa MK4S",
|
"name": "Generic PLA Silk @Prusa MK4S",
|
||||||
"sub_path": "filament/Generic PLA Silk @Prusa MK4S.json"
|
"sub_path": "filament/Generic PLA Silk @Prusa MK4S.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA @Prusa",
|
||||||
|
"sub_path": "filament/Generic PLA @Prusa.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA @Prusa MINIIS",
|
||||||
|
"sub_path": "filament/Generic PLA @Prusa MINIIS.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA @Prusa MINIIS 0.25",
|
||||||
|
"sub_path": "filament/Generic PLA @Prusa MINIIS 0.25.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA @Prusa MINIIS 0.6",
|
||||||
|
"sub_path": "filament/Generic PLA @Prusa MINIIS 0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA @Prusa MINIIS 0.8",
|
||||||
|
"sub_path": "filament/Generic PLA @Prusa MINIIS 0.8.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA @Prusa MK4",
|
||||||
|
"sub_path": "filament/Generic PLA @Prusa MK4.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA @Prusa XL",
|
||||||
|
"sub_path": "filament/Generic PLA @Prusa XL.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA @Prusa XL 5T",
|
||||||
|
"sub_path": "filament/Generic PLA @Prusa XL 5T.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA HF @Prusa MINIIS",
|
||||||
|
"sub_path": "filament/Generic PLA HF @Prusa MINIIS.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA HF @Prusa MINIIS 0.6",
|
||||||
|
"sub_path": "filament/Generic PLA HF @Prusa MINIIS 0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA HF @Prusa MINIIS 0.8",
|
||||||
|
"sub_path": "filament/Generic PLA HF @Prusa MINIIS 0.8.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PLA Silk @Prusa CORE One 0.6",
|
"name": "Generic PLA Silk @Prusa CORE One 0.6",
|
||||||
"sub_path": "filament/Generic PLA Silk @Prusa CORE One 0.6.json"
|
"sub_path": "filament/Generic PLA Silk @Prusa CORE One 0.6.json"
|
||||||
@@ -2452,6 +2368,26 @@
|
|||||||
"name": "Generic PLA Silk @Prusa CORE One 0.8",
|
"name": "Generic PLA Silk @Prusa CORE One 0.8",
|
||||||
"sub_path": "filament/Generic PLA Silk @Prusa CORE One 0.8.json"
|
"sub_path": "filament/Generic PLA Silk @Prusa CORE One 0.8.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA-CF @Prusa",
|
||||||
|
"sub_path": "filament/Generic PLA-CF @Prusa.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA-CF @Prusa MINIIS",
|
||||||
|
"sub_path": "filament/Generic PLA-CF @Prusa MINIIS.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA-CF @Prusa MINIIS 0.25",
|
||||||
|
"sub_path": "filament/Generic PLA-CF @Prusa MINIIS 0.25.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA-CF @Prusa MINIIS 0.6",
|
||||||
|
"sub_path": "filament/Generic PLA-CF @Prusa MINIIS 0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA-CF @Prusa MINIIS 0.8",
|
||||||
|
"sub_path": "filament/Generic PLA-CF @Prusa MINIIS 0.8.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Prusament PLA @CORE One 0.6",
|
"name": "Prusament PLA @CORE One 0.6",
|
||||||
"sub_path": "filament/Prusament PLA @CORE One 0.6.json"
|
"sub_path": "filament/Prusament PLA @CORE One 0.6.json"
|
||||||
@@ -2476,6 +2412,14 @@
|
|||||||
"name": "Prusament PLA @CORE One HF 0.8",
|
"name": "Prusament PLA @CORE One HF 0.8",
|
||||||
"sub_path": "filament/Prusament PLA @CORE One HF 0.8.json"
|
"sub_path": "filament/Prusament PLA @CORE One HF 0.8.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Prusament PLA @XL",
|
||||||
|
"sub_path": "filament/Prusament PLA @XL.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Prusament PLA @XL 5T",
|
||||||
|
"sub_path": "filament/Prusament PLA @XL 5T.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Prusament rPLA @CORE One 0.6",
|
"name": "Prusament rPLA @CORE One 0.6",
|
||||||
"sub_path": "filament/Prusament rPLA @CORE One 0.6.json"
|
"sub_path": "filament/Prusament rPLA @CORE One 0.6.json"
|
||||||
@@ -2484,6 +2428,46 @@
|
|||||||
"name": "Prusament rPLA @CORE One 0.8",
|
"name": "Prusament rPLA @CORE One 0.8",
|
||||||
"sub_path": "filament/Prusament rPLA @CORE One 0.8.json"
|
"sub_path": "filament/Prusament rPLA @CORE One 0.8.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Prusament rPLA @XL",
|
||||||
|
"sub_path": "filament/Prusament rPLA @XL.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Prusament rPLA @XL 5T",
|
||||||
|
"sub_path": "filament/Prusament rPLA @XL 5T.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PVA @Prusa",
|
||||||
|
"sub_path": "filament/Generic PVA @Prusa.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PVA @Prusa MINIIS",
|
||||||
|
"sub_path": "filament/Generic PVA @Prusa MINIIS.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PVA @Prusa MINIIS 0.25",
|
||||||
|
"sub_path": "filament/Generic PVA @Prusa MINIIS 0.25.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PVA @Prusa MINIIS 0.6",
|
||||||
|
"sub_path": "filament/Generic PVA @Prusa MINIIS 0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PVA @Prusa MINIIS 0.8",
|
||||||
|
"sub_path": "filament/Generic PVA @Prusa MINIIS 0.8.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PVA HF @Prusa MINIIS",
|
||||||
|
"sub_path": "filament/Generic PVA HF @Prusa MINIIS.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PVA HF @Prusa MINIIS 0.6",
|
||||||
|
"sub_path": "filament/Generic PVA HF @Prusa MINIIS 0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PVA HF @Prusa MINIIS 0.8",
|
||||||
|
"sub_path": "filament/Generic PVA HF @Prusa MINIIS 0.8.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Prusament PVB @CORE One 0.6",
|
"name": "Prusament PVB @CORE One 0.6",
|
||||||
"sub_path": "filament/Prusament PVB @CORE One 0.6.json"
|
"sub_path": "filament/Prusament PVB @CORE One 0.6.json"
|
||||||
@@ -2500,6 +2484,22 @@
|
|||||||
"name": "Generic TPU @Prusa MK4S 0.8",
|
"name": "Generic TPU @Prusa MK4S 0.8",
|
||||||
"sub_path": "filament/Generic TPU @Prusa MK4S 0.8.json"
|
"sub_path": "filament/Generic TPU @Prusa MK4S 0.8.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic TPU @Prusa",
|
||||||
|
"sub_path": "filament/Generic TPU @Prusa.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic TPU @Prusa MINIIS",
|
||||||
|
"sub_path": "filament/Generic TPU @Prusa MINIIS.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic TPU @Prusa MK4",
|
||||||
|
"sub_path": "filament/Generic TPU @Prusa MK4.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic TPU HF @Prusa MINIIS",
|
||||||
|
"sub_path": "filament/Generic TPU HF @Prusa MINIIS.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic ABS @Prusa MK4S HF0.5",
|
"name": "Generic ABS @Prusa MK4S HF0.5",
|
||||||
"sub_path": "filament/Generic ABS @Prusa MK4S HF0.5.json"
|
"sub_path": "filament/Generic ABS @Prusa MK4S HF0.5.json"
|
||||||
|
|||||||
+1414
-1414
File diff suppressed because it is too large
Load Diff
@@ -276,26 +276,22 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"filament_list": [
|
"filament_list": [
|
||||||
{
|
|
||||||
"name": "Generic ABS BigNozzle @RatRig",
|
|
||||||
"sub_path": "filament/Generic ABS BigNozzle @RatRig.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic ABS @RatRig",
|
"name": "Generic ABS @RatRig",
|
||||||
"sub_path": "filament/Generic ABS @RatRig.json"
|
"sub_path": "filament/Generic ABS @RatRig.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "RatRig PunkFil ABS",
|
"name": "Generic ABS BigNozzle @RatRig",
|
||||||
"sub_path": "filament/RatRig PunkFil ABS.json"
|
"sub_path": "filament/Generic ABS BigNozzle @RatRig.json"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic ASA BigNozzle @RatRig",
|
|
||||||
"sub_path": "filament/Generic ASA BigNozzle @RatRig.json"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic ASA @RatRig",
|
"name": "Generic ASA @RatRig",
|
||||||
"sub_path": "filament/Generic ASA @RatRig.json"
|
"sub_path": "filament/Generic ASA @RatRig.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ASA BigNozzle @RatRig",
|
||||||
|
"sub_path": "filament/Generic ASA BigNozzle @RatRig.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PA @RatRig",
|
"name": "Generic PA @RatRig",
|
||||||
"sub_path": "filament/Generic PA @RatRig.json"
|
"sub_path": "filament/Generic PA @RatRig.json"
|
||||||
@@ -308,38 +304,30 @@
|
|||||||
"name": "Generic PC @RatRig",
|
"name": "Generic PC @RatRig",
|
||||||
"sub_path": "filament/Generic PC @RatRig.json"
|
"sub_path": "filament/Generic PC @RatRig.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PCTG BigNozzle @RatRig",
|
|
||||||
"sub_path": "filament/Generic PCTG BigNozzle @RatRig.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG BigNozzle @RatRig",
|
|
||||||
"sub_path": "filament/Generic PETG BigNozzle @RatRig.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PCTG @RatRig",
|
"name": "Generic PCTG @RatRig",
|
||||||
"sub_path": "filament/Generic PCTG @RatRig.json"
|
"sub_path": "filament/Generic PCTG @RatRig.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PCTG BigNozzle @RatRig",
|
||||||
|
"sub_path": "filament/Generic PCTG BigNozzle @RatRig.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PETG @RatRig",
|
"name": "Generic PETG @RatRig",
|
||||||
"sub_path": "filament/Generic PETG @RatRig.json"
|
"sub_path": "filament/Generic PETG @RatRig.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "RatRig PunkFil PETG",
|
"name": "Generic PETG BigNozzle @RatRig",
|
||||||
"sub_path": "filament/RatRig PunkFil PETG.json"
|
"sub_path": "filament/Generic PETG BigNozzle @RatRig.json"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "RatRig PunkFil PETG CF",
|
|
||||||
"sub_path": "filament/RatRig PunkFil PETG CF.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA BigNozzle @RatRig",
|
|
||||||
"sub_path": "filament/Generic PLA BigNozzle @RatRig.json"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PLA @RatRig",
|
"name": "Generic PLA @RatRig",
|
||||||
"sub_path": "filament/Generic PLA @RatRig.json"
|
"sub_path": "filament/Generic PLA @RatRig.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA BigNozzle @RatRig",
|
||||||
|
"sub_path": "filament/Generic PLA BigNozzle @RatRig.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PLA-CF @RatRig",
|
"name": "Generic PLA-CF @RatRig",
|
||||||
"sub_path": "filament/Generic PLA-CF @RatRig.json"
|
"sub_path": "filament/Generic PLA-CF @RatRig.json"
|
||||||
@@ -348,13 +336,25 @@
|
|||||||
"name": "Generic PVA @RatRig",
|
"name": "Generic PVA @RatRig",
|
||||||
"sub_path": "filament/Generic PVA @RatRig.json"
|
"sub_path": "filament/Generic PVA @RatRig.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic TPU @RatRig",
|
||||||
|
"sub_path": "filament/Generic TPU @RatRig.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic TPU BigNozzle @RatRig",
|
"name": "Generic TPU BigNozzle @RatRig",
|
||||||
"sub_path": "filament/Generic TPU BigNozzle @RatRig.json"
|
"sub_path": "filament/Generic TPU BigNozzle @RatRig.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic TPU @RatRig",
|
"name": "RatRig PunkFil ABS",
|
||||||
"sub_path": "filament/Generic TPU @RatRig.json"
|
"sub_path": "filament/RatRig PunkFil ABS.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "RatRig PunkFil PETG",
|
||||||
|
"sub_path": "filament/RatRig PunkFil PETG.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "RatRig PunkFil PETG CF",
|
||||||
|
"sub_path": "filament/RatRig PunkFil PETG CF.json"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"machine_list": [
|
"machine_list": [
|
||||||
|
|||||||
+131
-131
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "SeeMeCNC",
|
"name": "SeeMeCNC",
|
||||||
"version": "2.4.0.03",
|
"version": "2.4.0.04",
|
||||||
"force_update": "1",
|
"force_update": "1",
|
||||||
"description": "SeeMeCNC configurations - Full profile set for Artemis, BOSSdelta, and RostockMAX printers",
|
"description": "SeeMeCNC configurations - Full profile set for Artemis, BOSSdelta, and RostockMAX printers",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
@@ -50,10 +50,6 @@
|
|||||||
"name": "SeeMeCNC process base 1.0mm",
|
"name": "SeeMeCNC process base 1.0mm",
|
||||||
"sub_path": "process/SeeMeCNC_process_base_1.0mm.json"
|
"sub_path": "process/SeeMeCNC_process_base_1.0mm.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "SeeMeCNC process base",
|
|
||||||
"sub_path": "process/SeeMeCNC_process_base.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "0.16mm Fine @SeeMeCNC Artemis 0.4",
|
"name": "0.16mm Fine @SeeMeCNC Artemis 0.4",
|
||||||
"sub_path": "process/0.16mm Fine @SeeMeCNC Artemis 0.4.json"
|
"sub_path": "process/0.16mm Fine @SeeMeCNC Artemis 0.4.json"
|
||||||
@@ -86,34 +82,6 @@
|
|||||||
"name": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
"name": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
||||||
"sub_path": "process/0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json"
|
"sub_path": "process/0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "0.20mm Fine @SeeMeCNC Artemis 0.5",
|
|
||||||
"sub_path": "process/0.20mm Fine @SeeMeCNC Artemis 0.5.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"sub_path": "process/0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
|
|
||||||
"sub_path": "process/0.20mm Fine @SeeMeCNC RostockMAX v4 0.5.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "0.20mm Standard @SeeMeCNC Artemis 0.4",
|
"name": "0.20mm Standard @SeeMeCNC Artemis 0.4",
|
||||||
"sub_path": "process/0.20mm Standard @SeeMeCNC Artemis 0.4.json"
|
"sub_path": "process/0.20mm Standard @SeeMeCNC Artemis 0.4.json"
|
||||||
@@ -170,34 +138,6 @@
|
|||||||
"name": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
|
"name": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
|
||||||
"sub_path": "process/0.24mm Draft @SeeMeCNC RostockMAX v4 0.4.json"
|
"sub_path": "process/0.24mm Draft @SeeMeCNC RostockMAX v4 0.4.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "0.25mm Standard @SeeMeCNC Artemis 0.5",
|
|
||||||
"sub_path": "process/0.25mm Standard @SeeMeCNC Artemis 0.5.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"sub_path": "process/0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
|
|
||||||
"sub_path": "process/0.25mm Standard @SeeMeCNC RostockMAX v4 0.5.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "0.28mm Extra Draft @SeeMeCNC Artemis 0.4",
|
"name": "0.28mm Extra Draft @SeeMeCNC Artemis 0.4",
|
||||||
"sub_path": "process/0.28mm Extra Draft @SeeMeCNC Artemis 0.4.json"
|
"sub_path": "process/0.28mm Extra Draft @SeeMeCNC Artemis 0.4.json"
|
||||||
@@ -227,32 +167,60 @@
|
|||||||
"sub_path": "process/0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4.json"
|
"sub_path": "process/0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0.28mm Fine @SeeMeCNC Artemis 0.7",
|
"name": "0.20mm Fine @SeeMeCNC Artemis 0.5",
|
||||||
"sub_path": "process/0.28mm Fine @SeeMeCNC Artemis 0.7.json"
|
"sub_path": "process/0.20mm Fine @SeeMeCNC Artemis 0.5.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
|
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
|
||||||
"sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7.json"
|
"sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
|
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
|
||||||
"sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7.json"
|
"sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
|
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
|
||||||
"sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7.json"
|
"sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
|
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
|
||||||
"sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7.json"
|
"sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
|
"name": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
|
||||||
"sub_path": "process/0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7.json"
|
"sub_path": "process/0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
|
"name": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
|
||||||
"sub_path": "process/0.28mm Fine @SeeMeCNC RostockMAX v4 0.7.json"
|
"sub_path": "process/0.20mm Fine @SeeMeCNC RostockMAX v4 0.5.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.25mm Standard @SeeMeCNC Artemis 0.5",
|
||||||
|
"sub_path": "process/0.25mm Standard @SeeMeCNC Artemis 0.5.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
|
||||||
|
"sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
|
||||||
|
"sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
|
||||||
|
"sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
|
||||||
|
"sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
|
||||||
|
"sub_path": "process/0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
|
||||||
|
"sub_path": "process/0.25mm Standard @SeeMeCNC RostockMAX v4 0.5.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0.30mm Draft @SeeMeCNC Artemis 0.5",
|
"name": "0.30mm Draft @SeeMeCNC Artemis 0.5",
|
||||||
@@ -282,34 +250,6 @@
|
|||||||
"name": "0.30mm Draft @SeeMeCNC RostockMAX v4 0.5",
|
"name": "0.30mm Draft @SeeMeCNC RostockMAX v4 0.5",
|
||||||
"sub_path": "process/0.30mm Draft @SeeMeCNC RostockMAX v4 0.5.json"
|
"sub_path": "process/0.30mm Draft @SeeMeCNC RostockMAX v4 0.5.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "0.30mm TPU Solid @SeeMeCNC Artemis 0.7",
|
|
||||||
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC Artemis 0.7.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7",
|
|
||||||
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "0.35mm Extra Draft @SeeMeCNC Artemis 0.5",
|
"name": "0.35mm Extra Draft @SeeMeCNC Artemis 0.5",
|
||||||
"sub_path": "process/0.35mm Extra Draft @SeeMeCNC Artemis 0.5.json"
|
"sub_path": "process/0.35mm Extra Draft @SeeMeCNC Artemis 0.5.json"
|
||||||
@@ -338,6 +278,62 @@
|
|||||||
"name": "0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5",
|
"name": "0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5",
|
||||||
"sub_path": "process/0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5.json"
|
"sub_path": "process/0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.28mm Fine @SeeMeCNC Artemis 0.7",
|
||||||
|
"sub_path": "process/0.28mm Fine @SeeMeCNC Artemis 0.7.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
|
||||||
|
"sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
|
||||||
|
"sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
|
||||||
|
"sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
|
||||||
|
"sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
|
||||||
|
"sub_path": "process/0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
|
||||||
|
"sub_path": "process/0.28mm Fine @SeeMeCNC RostockMAX v4 0.7.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.30mm TPU Solid @SeeMeCNC Artemis 0.7",
|
||||||
|
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC Artemis 0.7.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7",
|
||||||
|
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7",
|
||||||
|
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7",
|
||||||
|
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7",
|
||||||
|
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7",
|
||||||
|
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7",
|
||||||
|
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.35mm Standard @SeeMeCNC Artemis 0.7",
|
"name": "0.35mm Standard @SeeMeCNC Artemis 0.7",
|
||||||
"sub_path": "process/0.35mm Standard @SeeMeCNC Artemis 0.7.json"
|
"sub_path": "process/0.35mm Standard @SeeMeCNC Artemis 0.7.json"
|
||||||
@@ -394,34 +390,6 @@
|
|||||||
"name": "0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7",
|
"name": "0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7",
|
||||||
"sub_path": "process/0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7.json"
|
"sub_path": "process/0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "0.40mm Fine @SeeMeCNC Artemis 1.0",
|
|
||||||
"sub_path": "process/0.40mm Fine @SeeMeCNC Artemis 1.0.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"sub_path": "process/0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
|
|
||||||
"sub_path": "process/0.40mm Fine @SeeMeCNC RostockMAX v4 1.0.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "0.42mm Draft @SeeMeCNC Artemis 0.7",
|
"name": "0.42mm Draft @SeeMeCNC Artemis 0.7",
|
||||||
"sub_path": "process/0.42mm Draft @SeeMeCNC Artemis 0.7.json"
|
"sub_path": "process/0.42mm Draft @SeeMeCNC Artemis 0.7.json"
|
||||||
@@ -478,6 +446,34 @@
|
|||||||
"name": "0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7",
|
"name": "0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7",
|
||||||
"sub_path": "process/0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7.json"
|
"sub_path": "process/0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.40mm Fine @SeeMeCNC Artemis 1.0",
|
||||||
|
"sub_path": "process/0.40mm Fine @SeeMeCNC Artemis 1.0.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
|
||||||
|
"sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
|
||||||
|
"sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
|
||||||
|
"sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
|
||||||
|
"sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
|
||||||
|
"sub_path": "process/0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
|
||||||
|
"sub_path": "process/0.40mm Fine @SeeMeCNC RostockMAX v4 1.0.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.50mm Standard @SeeMeCNC Artemis 1.0",
|
"name": "0.50mm Standard @SeeMeCNC Artemis 1.0",
|
||||||
"sub_path": "process/0.50mm Standard @SeeMeCNC Artemis 1.0.json"
|
"sub_path": "process/0.50mm Standard @SeeMeCNC Artemis 1.0.json"
|
||||||
@@ -561,6 +557,10 @@
|
|||||||
{
|
{
|
||||||
"name": "0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0",
|
"name": "0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0",
|
||||||
"sub_path": "process/0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0.json"
|
"sub_path": "process/0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "SeeMeCNC process base",
|
||||||
|
"sub_path": "process/SeeMeCNC_process_base.json"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"filament_list": [
|
"filament_list": [
|
||||||
|
|||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC ABS 0.4 nozzle",
|
|
||||||
"inherits": "SeeMeCNC ABS",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC ABS 0.4 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 0.4 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 0.4 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 0.4 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.16mm Fine @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"5"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.2"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"setting_id": "FOSiDadyHyp8WKTb",
|
|
||||||
"filament_id": "SMCFB00104"
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC ABS 0.5 nozzle",
|
|
||||||
"inherits": "SeeMeCNC ABS",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC ABS 0.5 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 0.5 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 0.5 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 0.5 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.20mm Fine @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC RostockMAX v4 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"5"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.3"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"setting_id": "XzvEoqhK0cx7JieM",
|
|
||||||
"filament_id": "SMCFB00105"
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC ABS 0.7 nozzle",
|
|
||||||
"inherits": "SeeMeCNC ABS",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC ABS 0.7 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 0.7 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 0.7 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 0.7 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.28mm Fine @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC RostockMAX v4 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC RostockMAX v4 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"6"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.4"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"setting_id": "RbmLGSWPaVvl0NNr",
|
|
||||||
"filament_id": "SMCFB00107"
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC ABS 1.0 nozzle",
|
|
||||||
"inherits": "SeeMeCNC ABS",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC ABS 1.0 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 1.0 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 1.0 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 1.0 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.40mm Fine @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC RostockMAX v4 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC RostockMAX v4 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"6"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.5"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"setting_id": "DTcAxACOOtdvD43R",
|
|
||||||
"filament_id": "SMCFB00110"
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC PA-CF 0.4 nozzle",
|
|
||||||
"inherits": "SeeMeCNC PA-CF",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC PA-CF 0.4 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 0.4 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 0.4 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 0.4 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.16mm Fine @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"5"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.2"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"setting_id": "jf0puhp8kCuwL3jt",
|
|
||||||
"filament_id": "SMCFN00104"
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC PA-CF 0.5 nozzle",
|
|
||||||
"inherits": "SeeMeCNC PA-CF",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC PA-CF 0.5 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 0.5 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 0.5 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 0.5 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.20mm Fine @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC RostockMAX v4 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"5"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.3"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"setting_id": "c3gXbtFjJn4aK7pL",
|
|
||||||
"filament_id": "SMCFN00105"
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC PA-CF 0.7 nozzle",
|
|
||||||
"inherits": "SeeMeCNC PA-CF",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC PA-CF 0.7 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 0.7 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 0.7 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 0.7 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.28mm Fine @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC RostockMAX v4 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC RostockMAX v4 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"6"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.4"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"setting_id": "7sDIfUAs3Ftv7uUD",
|
|
||||||
"filament_id": "SMCFN00107"
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC PA-CF 1.0 nozzle",
|
|
||||||
"inherits": "SeeMeCNC PA-CF",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC PA-CF 1.0 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 1.0 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 1.0 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 1.0 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.40mm Fine @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC RostockMAX v4 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC RostockMAX v4 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"6"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.5"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"setting_id": "nr7CBE99WoHXy4Dw",
|
|
||||||
"filament_id": "SMCFN00110"
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC PETG 0.4 nozzle",
|
|
||||||
"inherits": "SeeMeCNC PETG",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC PETG 0.4 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 0.4 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 0.4 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 0.4 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.16mm Fine @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"5"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.2"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"setting_id": "kqCiusj7FAzbmnro",
|
|
||||||
"filament_id": "SMCFG00104"
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC PETG 0.5 nozzle",
|
|
||||||
"inherits": "SeeMeCNC PETG",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC PETG 0.5 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 0.5 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 0.5 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 0.5 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.20mm Fine @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC RostockMAX v4 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"6"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.3"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"setting_id": "85J1rc8KxOc7v2cF",
|
|
||||||
"filament_id": "SMCFG00105"
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC PETG 0.7 nozzle",
|
|
||||||
"inherits": "SeeMeCNC PETG",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC PETG 0.7 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 0.7 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 0.7 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 0.7 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.28mm Fine @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC RostockMAX v4 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC RostockMAX v4 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"6"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.4"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"setting_id": "QI1p2Hi76cWlfRwC",
|
|
||||||
"filament_id": "SMCFG00107"
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC PETG 1.0 nozzle",
|
|
||||||
"inherits": "SeeMeCNC PETG",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC PETG 1.0 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 1.0 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 1.0 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 1.0 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.40mm Fine @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC RostockMAX v4 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC RostockMAX v4 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"7"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.5"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"setting_id": "Njx1ZHccqqJzQ7AQ",
|
|
||||||
"filament_id": "SMCFG00110"
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC PETG-CF 0.4 nozzle",
|
|
||||||
"inherits": "SeeMeCNC PETG-CF",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC PETG-CF 0.4 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 0.4 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 0.4 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 0.4 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.16mm Fine @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"5"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.2"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"setting_id": "ulVlpkQVbvkSpmli",
|
|
||||||
"filament_id": "SMCFG00204"
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC PETG-CF 0.5 nozzle",
|
|
||||||
"inherits": "SeeMeCNC PETG-CF",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC PETG-CF 0.5 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 0.5 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 0.5 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 0.5 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.20mm Fine @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC RostockMAX v4 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"5"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.3"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"setting_id": "jK9Gr2VDAnOKrkPW",
|
|
||||||
"filament_id": "SMCFG00205"
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC PETG-CF 0.7 nozzle",
|
|
||||||
"inherits": "SeeMeCNC PETG-CF",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC PETG-CF 0.7 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 0.7 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 0.7 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 0.7 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.28mm Fine @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC RostockMAX v4 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC RostockMAX v4 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"6"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.4"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"setting_id": "Gn57oqh6nMBO651i",
|
|
||||||
"filament_id": "SMCFG00207"
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC PETG-CF 1.0 nozzle",
|
|
||||||
"inherits": "SeeMeCNC PETG-CF",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC PETG-CF 1.0 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 1.0 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 1.0 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 1.0 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.40mm Fine @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC RostockMAX v4 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC RostockMAX v4 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"6"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.5"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"setting_id": "nzRT23S6xk1bxbDJ",
|
|
||||||
"filament_id": "SMCFG00210"
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC PLA 0.4 nozzle",
|
|
||||||
"inherits": "SeeMeCNC PLA",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC PLA 0.4 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 0.4 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 0.4 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 0.4 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.16mm Fine @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC Artemis 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
|
||||||
"0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"5"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.2"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"setting_id": "k3oaCcJHHyAuRi6J",
|
|
||||||
"filament_id": "SMCFL00104"
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC PLA 0.5 nozzle",
|
|
||||||
"inherits": "SeeMeCNC PLA",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC PLA 0.5 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.5 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 0.5 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 0.5 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 0.5 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.20mm Fine @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.30mm Draft @SeeMeCNC RostockMAX v4 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC Artemis 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5",
|
|
||||||
"0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"5"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.3"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"setting_id": "CcINW4WttiNsKvjf",
|
|
||||||
"filament_id": "SMCFL00105"
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC PLA 0.7 nozzle",
|
|
||||||
"inherits": "SeeMeCNC PLA",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC PLA 0.7 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 0.7 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 0.7 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 0.7 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.28mm Fine @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.35mm Standard @SeeMeCNC RostockMAX v4 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.42mm Draft @SeeMeCNC RostockMAX v4 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"6"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.4"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"setting_id": "pOuc1eXMLLOBqHuz",
|
|
||||||
"filament_id": "SMCFL00107"
|
|
||||||
}
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC PLA 1.0 nozzle",
|
|
||||||
"inherits": "SeeMeCNC PLA",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC PLA 1.0 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 1.0 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 1.0 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 1.0 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 1.0 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.40mm Fine @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.50mm Standard @SeeMeCNC RostockMAX v4 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.60mm Draft @SeeMeCNC RostockMAX v4 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC Artemis 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0",
|
|
||||||
"0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"6"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.5"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"45"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"35"
|
|
||||||
],
|
|
||||||
"setting_id": "jSvqBk6R6HAaTRxk",
|
|
||||||
"filament_id": "SMCFL00110"
|
|
||||||
}
|
|
||||||
@@ -1,51 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "filament",
|
|
||||||
"name": "SeeMeCNC TPU 0.7 nozzle",
|
|
||||||
"inherits": "SeeMeCNC TPU",
|
|
||||||
"from": "System",
|
|
||||||
"instantiation": "true",
|
|
||||||
"filament_settings_id": [
|
|
||||||
"SeeMeCNC TPU 0.7 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers": [
|
|
||||||
"SeeMeCNC Artemis 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.7 nozzle",
|
|
||||||
"SeeMeCNC BOSSdelta 300 0.7 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v3.2 0.7 nozzle",
|
|
||||||
"SeeMeCNC RostockMAX v4 0.7 nozzle"
|
|
||||||
],
|
|
||||||
"compatible_printers_condition": "",
|
|
||||||
"compatible_prints": [
|
|
||||||
"0.30mm TPU Solid @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7",
|
|
||||||
"0.35mm TPU Vase @SeeMeCNC Artemis 0.7",
|
|
||||||
"0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7",
|
|
||||||
"0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7",
|
|
||||||
"0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7",
|
|
||||||
"0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7",
|
|
||||||
"0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7",
|
|
||||||
"0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7"
|
|
||||||
],
|
|
||||||
"compatible_prints_condition": "",
|
|
||||||
"filament_retraction_length": [
|
|
||||||
"7"
|
|
||||||
],
|
|
||||||
"filament_z_hop": [
|
|
||||||
"0.3"
|
|
||||||
],
|
|
||||||
"filament_retraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"filament_deretraction_speed": [
|
|
||||||
"30"
|
|
||||||
],
|
|
||||||
"setting_id": "4LUkyKiKFb96OeC0",
|
|
||||||
"filament_id": "SMCFU00107"
|
|
||||||
}
|
|
||||||
+352
-352
@@ -194,18 +194,42 @@
|
|||||||
"name": "fdm_process_idex",
|
"name": "fdm_process_idex",
|
||||||
"sub_path": "process/fdm_process_idex.json"
|
"sub_path": "process/fdm_process_idex.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.06_nozzle_0.2",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.06_nozzle_0.2.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "fdm_process_U1_0.08",
|
"name": "fdm_process_U1_0.08",
|
||||||
"sub_path": "process/fdm_process_U1_0.08.json"
|
"sub_path": "process/fdm_process_U1_0.08.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.08_nozzle_0.2",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.08_nozzle_0.2.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.10_nozzle_0.2",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.10_nozzle_0.2.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "fdm_process_U1_0.12",
|
"name": "fdm_process_U1_0.12",
|
||||||
"sub_path": "process/fdm_process_U1_0.12.json"
|
"sub_path": "process/fdm_process_U1_0.12.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.12_nozzle_0.2",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.12_nozzle_0.2.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.14_nozzle_0.2",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.14_nozzle_0.2.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "fdm_process_U1_0.16",
|
"name": "fdm_process_U1_0.16",
|
||||||
"sub_path": "process/fdm_process_U1_0.16.json"
|
"sub_path": "process/fdm_process_U1_0.16.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.18_nozzle_0.6",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.18_nozzle_0.6.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "fdm_process_U1_0.20",
|
"name": "fdm_process_U1_0.20",
|
||||||
"sub_path": "process/fdm_process_U1_0.20.json"
|
"sub_path": "process/fdm_process_U1_0.20.json"
|
||||||
@@ -214,14 +238,58 @@
|
|||||||
"name": "fdm_process_U1_0.24",
|
"name": "fdm_process_U1_0.24",
|
||||||
"sub_path": "process/fdm_process_U1_0.24.json"
|
"sub_path": "process/fdm_process_U1_0.24.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.24_nozzle_0.6",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.24_nozzle_0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.24_nozzle_0.8",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.24_nozzle_0.8.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "fdm_process_U1_0.28",
|
"name": "fdm_process_U1_0.28",
|
||||||
"sub_path": "process/fdm_process_U1_0.28.json"
|
"sub_path": "process/fdm_process_U1_0.28.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.2_common",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.2_common.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.30_nozzle_0.6",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.30_nozzle_0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.32_nozzle_0.8",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.32_nozzle_0.8.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.36_nozzle_0.6",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.36_nozzle_0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.40_nozzle_0.8",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.40_nozzle_0.8.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.42_nozzle_0.6",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.42_nozzle_0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.48_nozzle_0.8",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.48_nozzle_0.8.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.56_nozzle_0.8",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.56_nozzle_0.8.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "fdm_process_U1_0.6_common",
|
"name": "fdm_process_U1_0.6_common",
|
||||||
"sub_path": "process/fdm_process_U1_0.6_common.json"
|
"sub_path": "process/fdm_process_U1_0.6_common.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.8_common",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.8_common.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.08 Extra Fine @Snapmaker Artisan (0.4 nozzle)",
|
"name": "0.08 Extra Fine @Snapmaker Artisan (0.4 nozzle)",
|
||||||
"sub_path": "process/0.08 Extra Fine @Snapmaker Artisan (0.4 nozzle).json"
|
"sub_path": "process/0.08 Extra Fine @Snapmaker Artisan (0.4 nozzle).json"
|
||||||
@@ -402,6 +470,14 @@
|
|||||||
"name": "0.48 Draft @Snapmaker J1 (0.8 nozzle)",
|
"name": "0.48 Draft @Snapmaker J1 (0.8 nozzle)",
|
||||||
"sub_path": "process/0.48 Draft @Snapmaker J1 (0.8 nozzle).json"
|
"sub_path": "process/0.48 Draft @Snapmaker J1 (0.8 nozzle).json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.06 High Quality @Snapmaker U1 (0.2 nozzle)",
|
||||||
|
"sub_path": "process/0.06 High Quality @Snapmaker U1 (0.2 nozzle).json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.06 Standard @Snapmaker U1 (0.2 nozzle)",
|
||||||
|
"sub_path": "process/0.06 Standard @Snapmaker U1 (0.2 nozzle).json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.08 Extra Fine @Snapmaker U1 (0.4 nozzle)",
|
"name": "0.08 Extra Fine @Snapmaker U1 (0.4 nozzle)",
|
||||||
"sub_path": "process/0.08 Extra Fine @Snapmaker U1 (0.4 nozzle).json"
|
"sub_path": "process/0.08 Extra Fine @Snapmaker U1 (0.4 nozzle).json"
|
||||||
@@ -410,6 +486,22 @@
|
|||||||
"name": "0.08 High Quality @Snapmaker U1 (0.4 nozzle)",
|
"name": "0.08 High Quality @Snapmaker U1 (0.4 nozzle)",
|
||||||
"sub_path": "process/0.08 High Quality @Snapmaker U1 (0.4 nozzle).json"
|
"sub_path": "process/0.08 High Quality @Snapmaker U1 (0.4 nozzle).json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.08 High Quality @Snapmaker U1 (0.2 nozzle)",
|
||||||
|
"sub_path": "process/0.08 High Quality @Snapmaker U1 (0.2 nozzle).json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.08 Standard @Snapmaker U1 (0.2 nozzle)",
|
||||||
|
"sub_path": "process/0.08 Standard @Snapmaker U1 (0.2 nozzle).json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.10 High Quality @Snapmaker U1 (0.2 nozzle)",
|
||||||
|
"sub_path": "process/0.10 High Quality @Snapmaker U1 (0.2 nozzle).json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.10 Standard @Snapmaker U1 (0.2 nozzle)",
|
||||||
|
"sub_path": "process/0.10 Standard @Snapmaker U1 (0.2 nozzle).json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.12 Fine @Snapmaker U1 (0.4 nozzle)",
|
"name": "0.12 Fine @Snapmaker U1 (0.4 nozzle)",
|
||||||
"sub_path": "process/0.12 Fine @Snapmaker U1 (0.4 nozzle).json"
|
"sub_path": "process/0.12 Fine @Snapmaker U1 (0.4 nozzle).json"
|
||||||
@@ -418,6 +510,14 @@
|
|||||||
"name": "0.12 High Quality @Snapmaker U1 (0.4 nozzle)",
|
"name": "0.12 High Quality @Snapmaker U1 (0.4 nozzle)",
|
||||||
"sub_path": "process/0.12 High Quality @Snapmaker U1 (0.4 nozzle).json"
|
"sub_path": "process/0.12 High Quality @Snapmaker U1 (0.4 nozzle).json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.12 Standard @Snapmaker U1 (0.2 nozzle)",
|
||||||
|
"sub_path": "process/0.12 Standard @Snapmaker U1 (0.2 nozzle).json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.14 Standard @Snapmaker U1 (0.2 nozzle)",
|
||||||
|
"sub_path": "process/0.14 Standard @Snapmaker U1 (0.2 nozzle).json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.16 High Quality @Snapmaker U1 (0.4 nozzle)",
|
"name": "0.16 High Quality @Snapmaker U1 (0.4 nozzle)",
|
||||||
"sub_path": "process/0.16 High Quality @Snapmaker U1 (0.4 nozzle).json"
|
"sub_path": "process/0.16 High Quality @Snapmaker U1 (0.4 nozzle).json"
|
||||||
@@ -426,6 +526,10 @@
|
|||||||
"name": "0.16 Optimal @Snapmaker U1 (0.4 nozzle)",
|
"name": "0.16 Optimal @Snapmaker U1 (0.4 nozzle)",
|
||||||
"sub_path": "process/0.16 Optimal @Snapmaker U1 (0.4 nozzle).json"
|
"sub_path": "process/0.16 Optimal @Snapmaker U1 (0.4 nozzle).json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.18 Standard @Snapmaker U1 (0.6 nozzle)",
|
||||||
|
"sub_path": "process/0.18 Standard @Snapmaker U1 (0.6 nozzle).json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.20 Quality @Snapmaker U1 (0.4 nozzle)",
|
"name": "0.20 Quality @Snapmaker U1 (0.4 nozzle)",
|
||||||
"sub_path": "process/0.20 Quality @Snapmaker U1 (0.4 nozzle).json"
|
"sub_path": "process/0.20 Quality @Snapmaker U1 (0.4 nozzle).json"
|
||||||
@@ -454,10 +558,50 @@
|
|||||||
"name": "0.24 Draft @Snapmaker U1 (0.4 nozzle)",
|
"name": "0.24 Draft @Snapmaker U1 (0.4 nozzle)",
|
||||||
"sub_path": "process/0.24 Draft @Snapmaker U1 (0.4 nozzle).json"
|
"sub_path": "process/0.24 Draft @Snapmaker U1 (0.4 nozzle).json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.24 Standard @Snapmaker U1 (0.6 nozzle)",
|
||||||
|
"sub_path": "process/0.24 Standard @Snapmaker U1 (0.6 nozzle).json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.24 Standard @Snapmaker U1 (0.8 nozzle)",
|
||||||
|
"sub_path": "process/0.24 Standard @Snapmaker U1 (0.8 nozzle).json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.28 Extra Draft @Snapmaker U1 (0.4 nozzle)",
|
"name": "0.28 Extra Draft @Snapmaker U1 (0.4 nozzle)",
|
||||||
"sub_path": "process/0.28 Extra Draft @Snapmaker U1 (0.4 nozzle).json"
|
"sub_path": "process/0.28 Extra Draft @Snapmaker U1 (0.4 nozzle).json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.30 Standard @Snapmaker U1 (0.6 nozzle)",
|
||||||
|
"sub_path": "process/0.30 Standard @Snapmaker U1 (0.6 nozzle).json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.30 Strength @Snapmaker U1 (0.6 nozzle)",
|
||||||
|
"sub_path": "process/0.30 Strength @Snapmaker U1 (0.6 nozzle).json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.32 Standard @Snapmaker U1 (0.8 nozzle)",
|
||||||
|
"sub_path": "process/0.32 Standard @Snapmaker U1 (0.8 nozzle).json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.36 Standard @Snapmaker U1 (0.6 nozzle)",
|
||||||
|
"sub_path": "process/0.36 Standard @Snapmaker U1 (0.6 nozzle).json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.40 Standard @Snapmaker U1 (0.8 nozzle)",
|
||||||
|
"sub_path": "process/0.40 Standard @Snapmaker U1 (0.8 nozzle).json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.42 Standard @Snapmaker U1 (0.6 nozzle)",
|
||||||
|
"sub_path": "process/0.42 Standard @Snapmaker U1 (0.6 nozzle).json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.48 Standard @Snapmaker U1 (0.8 nozzle)",
|
||||||
|
"sub_path": "process/0.48 Standard @Snapmaker U1 (0.8 nozzle).json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.56 Standard @Snapmaker U1 (0.8 nozzle)",
|
||||||
|
"sub_path": "process/0.56 Standard @Snapmaker U1 (0.8 nozzle).json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.20 Standard @Snapmaker U1 (0.6 nozzle)",
|
"name": "0.20 Standard @Snapmaker U1 (0.6 nozzle)",
|
||||||
"sub_path": "process/0.20 Standard @Snapmaker U1 (0.6 nozzle).json"
|
"sub_path": "process/0.20 Standard @Snapmaker U1 (0.6 nozzle).json"
|
||||||
@@ -473,150 +617,6 @@
|
|||||||
{
|
{
|
||||||
"name": "0.06 Standard @Snapmaker Artisan (0.2 nozzle)",
|
"name": "0.06 Standard @Snapmaker Artisan (0.2 nozzle)",
|
||||||
"sub_path": "process/0.06 Standard @Snapmaker Artisan (0.2 nozzle).json"
|
"sub_path": "process/0.06 Standard @Snapmaker Artisan (0.2 nozzle).json"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fdm_process_U1_0.2_common",
|
|
||||||
"sub_path": "process/fdm_process_U1_0.2_common.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fdm_process_U1_0.8_common",
|
|
||||||
"sub_path": "process/fdm_process_U1_0.8_common.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fdm_process_U1_0.06_nozzle_0.2",
|
|
||||||
"sub_path": "process/fdm_process_U1_0.06_nozzle_0.2.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fdm_process_U1_0.08_nozzle_0.2",
|
|
||||||
"sub_path": "process/fdm_process_U1_0.08_nozzle_0.2.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fdm_process_U1_0.10_nozzle_0.2",
|
|
||||||
"sub_path": "process/fdm_process_U1_0.10_nozzle_0.2.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fdm_process_U1_0.12_nozzle_0.2",
|
|
||||||
"sub_path": "process/fdm_process_U1_0.12_nozzle_0.2.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fdm_process_U1_0.14_nozzle_0.2",
|
|
||||||
"sub_path": "process/fdm_process_U1_0.14_nozzle_0.2.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fdm_process_U1_0.18_nozzle_0.6",
|
|
||||||
"sub_path": "process/fdm_process_U1_0.18_nozzle_0.6.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fdm_process_U1_0.24_nozzle_0.6",
|
|
||||||
"sub_path": "process/fdm_process_U1_0.24_nozzle_0.6.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fdm_process_U1_0.24_nozzle_0.8",
|
|
||||||
"sub_path": "process/fdm_process_U1_0.24_nozzle_0.8.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fdm_process_U1_0.30_nozzle_0.6",
|
|
||||||
"sub_path": "process/fdm_process_U1_0.30_nozzle_0.6.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fdm_process_U1_0.32_nozzle_0.8",
|
|
||||||
"sub_path": "process/fdm_process_U1_0.32_nozzle_0.8.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fdm_process_U1_0.36_nozzle_0.6",
|
|
||||||
"sub_path": "process/fdm_process_U1_0.36_nozzle_0.6.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fdm_process_U1_0.40_nozzle_0.8",
|
|
||||||
"sub_path": "process/fdm_process_U1_0.40_nozzle_0.8.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fdm_process_U1_0.42_nozzle_0.6",
|
|
||||||
"sub_path": "process/fdm_process_U1_0.42_nozzle_0.6.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fdm_process_U1_0.48_nozzle_0.8",
|
|
||||||
"sub_path": "process/fdm_process_U1_0.48_nozzle_0.8.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "fdm_process_U1_0.56_nozzle_0.8",
|
|
||||||
"sub_path": "process/fdm_process_U1_0.56_nozzle_0.8.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.06 High Quality @Snapmaker U1 (0.2 nozzle)",
|
|
||||||
"sub_path": "process/0.06 High Quality @Snapmaker U1 (0.2 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.06 Standard @Snapmaker U1 (0.2 nozzle)",
|
|
||||||
"sub_path": "process/0.06 Standard @Snapmaker U1 (0.2 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.08 High Quality @Snapmaker U1 (0.2 nozzle)",
|
|
||||||
"sub_path": "process/0.08 High Quality @Snapmaker U1 (0.2 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.08 Standard @Snapmaker U1 (0.2 nozzle)",
|
|
||||||
"sub_path": "process/0.08 Standard @Snapmaker U1 (0.2 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.10 High Quality @Snapmaker U1 (0.2 nozzle)",
|
|
||||||
"sub_path": "process/0.10 High Quality @Snapmaker U1 (0.2 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.10 Standard @Snapmaker U1 (0.2 nozzle)",
|
|
||||||
"sub_path": "process/0.10 Standard @Snapmaker U1 (0.2 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.12 Standard @Snapmaker U1 (0.2 nozzle)",
|
|
||||||
"sub_path": "process/0.12 Standard @Snapmaker U1 (0.2 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.14 Standard @Snapmaker U1 (0.2 nozzle)",
|
|
||||||
"sub_path": "process/0.14 Standard @Snapmaker U1 (0.2 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.18 Standard @Snapmaker U1 (0.6 nozzle)",
|
|
||||||
"sub_path": "process/0.18 Standard @Snapmaker U1 (0.6 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.24 Standard @Snapmaker U1 (0.6 nozzle)",
|
|
||||||
"sub_path": "process/0.24 Standard @Snapmaker U1 (0.6 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.30 Standard @Snapmaker U1 (0.6 nozzle)",
|
|
||||||
"sub_path": "process/0.30 Standard @Snapmaker U1 (0.6 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.30 Strength @Snapmaker U1 (0.6 nozzle)",
|
|
||||||
"sub_path": "process/0.30 Strength @Snapmaker U1 (0.6 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.36 Standard @Snapmaker U1 (0.6 nozzle)",
|
|
||||||
"sub_path": "process/0.36 Standard @Snapmaker U1 (0.6 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.42 Standard @Snapmaker U1 (0.6 nozzle)",
|
|
||||||
"sub_path": "process/0.42 Standard @Snapmaker U1 (0.6 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.24 Standard @Snapmaker U1 (0.8 nozzle)",
|
|
||||||
"sub_path": "process/0.24 Standard @Snapmaker U1 (0.8 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.32 Standard @Snapmaker U1 (0.8 nozzle)",
|
|
||||||
"sub_path": "process/0.32 Standard @Snapmaker U1 (0.8 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.40 Standard @Snapmaker U1 (0.8 nozzle)",
|
|
||||||
"sub_path": "process/0.40 Standard @Snapmaker U1 (0.8 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.48 Standard @Snapmaker U1 (0.8 nozzle)",
|
|
||||||
"sub_path": "process/0.48 Standard @Snapmaker U1 (0.8 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.56 Standard @Snapmaker U1 (0.8 nozzle)",
|
|
||||||
"sub_path": "process/0.56 Standard @Snapmaker U1 (0.8 nozzle).json"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"filament_list": [
|
"filament_list": [
|
||||||
@@ -624,14 +624,26 @@
|
|||||||
"name": "PolyTerra PLA @0.2 nozzle",
|
"name": "PolyTerra PLA @0.2 nozzle",
|
||||||
"sub_path": "filament/Polymaker/PolyTerra PLA @0.2 nozzle.json"
|
"sub_path": "filament/Polymaker/PolyTerra PLA @0.2 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Basic @U1 base",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Basic @U1 base.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Snapmaker PLA Lite @U1 base",
|
"name": "Snapmaker PLA Lite @U1 base",
|
||||||
"sub_path": "filament/Snapmaker PLA Lite @U1 base.json"
|
"sub_path": "filament/Snapmaker PLA Lite @U1 base.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Matte @U1 base2",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Matte @U1 base2.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Snapmaker PLA SnapSpeed @U1 base",
|
"name": "Snapmaker PLA SnapSpeed @U1 base",
|
||||||
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 base.json"
|
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 base.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA SnapSpeed @U1 base2",
|
||||||
|
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 base2.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Snapmaker TPU 95A @U1 base",
|
"name": "Snapmaker TPU 95A @U1 base",
|
||||||
"sub_path": "filament/Snapmaker TPU 95A @U1 base.json"
|
"sub_path": "filament/Snapmaker TPU 95A @U1 base.json"
|
||||||
@@ -648,14 +660,62 @@
|
|||||||
"name": "PolyTerra J1 PLA @0.2 nozzle",
|
"name": "PolyTerra J1 PLA @0.2 nozzle",
|
||||||
"sub_path": "filament/Polymaker/PolyTerra J1 PLA @0.2 nozzle.json"
|
"sub_path": "filament/Polymaker/PolyTerra J1 PLA @0.2 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Basic @U1",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Basic @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Full Spectrum @U1 0.4 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Full Spectrum @U1 0.4 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Silk @U1",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Silk @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Silk @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Silk @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Silk @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Silk @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Silk @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Silk @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Snapmaker PLA Lite @U1",
|
"name": "Snapmaker PLA Lite @U1",
|
||||||
"sub_path": "filament/Snapmaker PLA Lite @U1.json"
|
"sub_path": "filament/Snapmaker PLA Lite @U1.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Matte @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Matte @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Matte @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Matte @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Matte @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Matte @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Snapmaker PLA SnapSpeed @U1",
|
"name": "Snapmaker PLA SnapSpeed @U1",
|
||||||
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1.json"
|
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA SnapSpeed @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA SnapSpeed @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA SnapSpeed @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Snapmaker TPU 95A @U1",
|
"name": "Snapmaker TPU 95A @U1",
|
||||||
"sub_path": "filament/Snapmaker TPU 95A @U1.json"
|
"sub_path": "filament/Snapmaker TPU 95A @U1.json"
|
||||||
@@ -840,6 +900,14 @@
|
|||||||
"name": "Snapmaker PETG @base",
|
"name": "Snapmaker PETG @base",
|
||||||
"sub_path": "filament/Snapmaker PETG @base.json"
|
"sub_path": "filament/Snapmaker PETG @base.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG HF @U1 base2",
|
||||||
|
"sub_path": "filament/Snapmaker PETG HF @U1 base2.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG Translucent @U1 base",
|
||||||
|
"sub_path": "filament/Snapmaker PETG Translucent @U1 base.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Snapmaker PETG-CF @U1 base",
|
"name": "Snapmaker PETG-CF @U1 base",
|
||||||
"sub_path": "filament/Snapmaker PETG-CF @U1 base.json"
|
"sub_path": "filament/Snapmaker PETG-CF @U1 base.json"
|
||||||
@@ -988,6 +1056,10 @@
|
|||||||
"name": "Polymaker PLA @Snapmaker U1 base",
|
"name": "Polymaker PLA @Snapmaker U1 base",
|
||||||
"sub_path": "filament/Polymaker/Polymaker PLA @Snapmaker U1 base.json"
|
"sub_path": "filament/Polymaker/Polymaker PLA @Snapmaker U1 base.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Polymaker PLA @U1 base",
|
||||||
|
"sub_path": "filament/Polymaker PLA @U1 base.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Polymaker PLA Pro @Base",
|
"name": "Polymaker PLA Pro @Base",
|
||||||
"sub_path": "filament/Polymaker/Polymaker PLA Pro @Base.json"
|
"sub_path": "filament/Polymaker/Polymaker PLA Pro @Base.json"
|
||||||
@@ -1048,6 +1120,10 @@
|
|||||||
"name": "Snapmaker PLA @base",
|
"name": "Snapmaker PLA @base",
|
||||||
"sub_path": "filament/Snapmaker PLA @base.json"
|
"sub_path": "filament/Snapmaker PLA @base.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Glow @U1 base",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Glow @U1 base.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Snapmaker PLA Metal @U1 base",
|
"name": "Snapmaker PLA Metal @U1 base",
|
||||||
"sub_path": "filament/Snapmaker PLA Metal @U1 base.json"
|
"sub_path": "filament/Snapmaker PLA Metal @U1 base.json"
|
||||||
@@ -1060,6 +1136,34 @@
|
|||||||
"name": "Snapmaker PLA Silk @base",
|
"name": "Snapmaker PLA Silk @base",
|
||||||
"sub_path": "filament/Snapmaker PLA Silk @base.json"
|
"sub_path": "filament/Snapmaker PLA Silk @base.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Translucent @U1 base",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Translucent @U1 base.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Wood @U1 0.4 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Wood @U1 0.4 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Wood @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Wood @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Wood @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Wood @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA-CF @U1 0.4 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA-CF @U1 0.4 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA-CF @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA-CF @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA-CF @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA-CF @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Snapmaker PLA-CF @U1 base",
|
"name": "Snapmaker PLA-CF @U1 base",
|
||||||
"sub_path": "filament/Snapmaker PLA-CF @U1 base.json"
|
"sub_path": "filament/Snapmaker PLA-CF @U1 base.json"
|
||||||
@@ -1096,6 +1200,30 @@
|
|||||||
"name": "Snapmaker J1 TPU @base",
|
"name": "Snapmaker J1 TPU @base",
|
||||||
"sub_path": "filament/Snapmaker J1 TPU @base.json"
|
"sub_path": "filament/Snapmaker J1 TPU @base.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker TPU 90A @U1",
|
||||||
|
"sub_path": "filament/Snapmaker TPU 90A @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker TPU 90A @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker TPU 90A @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker TPU 90A @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker TPU 90A @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker TPU 95A HF @U1",
|
||||||
|
"sub_path": "filament/Snapmaker TPU 95A HF @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker TPU 95A HF @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker TPU 95A HF @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker TPU 95A HF @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker TPU 95A HF @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Snapmaker TPU @U1 base",
|
"name": "Snapmaker TPU @U1 base",
|
||||||
"sub_path": "filament/Snapmaker TPU @U1 base.json"
|
"sub_path": "filament/Snapmaker TPU @U1 base.json"
|
||||||
@@ -1316,6 +1444,34 @@
|
|||||||
"name": "Snapmaker PETG @0.2 nozzle",
|
"name": "Snapmaker PETG @0.2 nozzle",
|
||||||
"sub_path": "filament/Snapmaker PETG @0.2 nozzle.json"
|
"sub_path": "filament/Snapmaker PETG @0.2 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG HF @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG HF @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG HF @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG HF @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG HF @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG HF @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG Translucent @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG Translucent @U1 0.4 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.4 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG Translucent @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG Translucent @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Snapmaker PETG-CF @U1",
|
"name": "Snapmaker PETG-CF @U1",
|
||||||
"sub_path": "filament/Snapmaker PETG-CF @U1.json"
|
"sub_path": "filament/Snapmaker PETG-CF @U1.json"
|
||||||
@@ -1460,6 +1616,18 @@
|
|||||||
"name": "Polymaker PLA @Snapmaker U1",
|
"name": "Polymaker PLA @Snapmaker U1",
|
||||||
"sub_path": "filament/Polymaker/Polymaker PLA @Snapmaker U1.json"
|
"sub_path": "filament/Polymaker/Polymaker PLA @Snapmaker U1.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Polymaker General PLA Family @U1",
|
||||||
|
"sub_path": "filament/Polymaker General PLA Family @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Polymaker Silk PLA Family @U1",
|
||||||
|
"sub_path": "filament/Polymaker Silk PLA Family @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Polymaker Tough PLA Family @U1",
|
||||||
|
"sub_path": "filament/Polymaker Tough PLA Family @U1.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Polymaker PLA Pro @Snapmaker U1",
|
"name": "Polymaker PLA Pro @Snapmaker U1",
|
||||||
"sub_path": "filament/Polymaker/Polymaker PLA Pro @Snapmaker U1.json"
|
"sub_path": "filament/Polymaker/Polymaker PLA Pro @Snapmaker U1.json"
|
||||||
@@ -1560,6 +1728,10 @@
|
|||||||
"name": "Snapmaker PLA",
|
"name": "Snapmaker PLA",
|
||||||
"sub_path": "filament/Snapmaker PLA.json"
|
"sub_path": "filament/Snapmaker PLA.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Glow @U1 0.4 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Glow @U1 0.4 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Snapmaker PLA Metal @U1",
|
"name": "Snapmaker PLA Metal @U1",
|
||||||
"sub_path": "filament/Snapmaker PLA Metal @U1.json"
|
"sub_path": "filament/Snapmaker PLA Metal @U1.json"
|
||||||
@@ -1572,6 +1744,22 @@
|
|||||||
"name": "Snapmaker PLA Silk @0.2 nozzle",
|
"name": "Snapmaker PLA Silk @0.2 nozzle",
|
||||||
"sub_path": "filament/Snapmaker PLA Silk @0.2 nozzle.json"
|
"sub_path": "filament/Snapmaker PLA Silk @0.2 nozzle.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Translucent @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Translucent @U1 0.4 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.4 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Translucent @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Translucent @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Snapmaker PLA-CF",
|
"name": "Snapmaker PLA-CF",
|
||||||
"sub_path": "filament/Snapmaker PLA-CF.json"
|
"sub_path": "filament/Snapmaker PLA-CF.json"
|
||||||
@@ -1612,6 +1800,14 @@
|
|||||||
"name": "Snapmaker PVA @U1",
|
"name": "Snapmaker PVA @U1",
|
||||||
"sub_path": "filament/Snapmaker PVA @U1.json"
|
"sub_path": "filament/Snapmaker PVA @U1.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PVA @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PVA @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PVA @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PVA @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Snapmaker PVA",
|
"name": "Snapmaker PVA",
|
||||||
"sub_path": "filament/Snapmaker PVA.json"
|
"sub_path": "filament/Snapmaker PVA.json"
|
||||||
@@ -1712,26 +1908,6 @@
|
|||||||
"name": "Snapmaker Breakaway Support For PLA @U1",
|
"name": "Snapmaker Breakaway Support For PLA @U1",
|
||||||
"sub_path": "filament/Snapmaker Breakaway Support For PLA @U1.json"
|
"sub_path": "filament/Snapmaker Breakaway Support For PLA @U1.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "PolyTerra J1 PLA",
|
|
||||||
"sub_path": "filament/Polymaker/PolyTerra J1 PLA.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Matte @U1 base",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Matte @U1 base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Polymaker PLA @U1 base",
|
|
||||||
"sub_path": "filament/Polymaker PLA @U1 base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Polymaker Silk PLA Family @U1",
|
|
||||||
"sub_path": "filament/Polymaker Silk PLA Family @U1.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Polymaker Tough PLA Family @U1",
|
|
||||||
"sub_path": "filament/Polymaker Tough PLA Family @U1.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Snapmaker Breakaway Support For PLA @U1 0.2 nozzle",
|
"name": "Snapmaker Breakaway Support For PLA @U1 0.2 nozzle",
|
||||||
"sub_path": "filament/Snapmaker Breakaway Support For PLA @U1 0.2 nozzle.json"
|
"sub_path": "filament/Snapmaker Breakaway Support For PLA @U1 0.2 nozzle.json"
|
||||||
@@ -1745,188 +1921,12 @@
|
|||||||
"sub_path": "filament/Snapmaker Breakaway Support For PLA @U1 0.8 nozzle.json"
|
"sub_path": "filament/Snapmaker Breakaway Support For PLA @U1 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Snapmaker PETG HF @U1 base2",
|
"name": "PolyTerra J1 PLA",
|
||||||
"sub_path": "filament/Snapmaker PETG HF @U1 base2.json"
|
"sub_path": "filament/Polymaker/PolyTerra J1 PLA.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Snapmaker PETG Translucent @U1 base",
|
"name": "Snapmaker PLA Matte @U1 base",
|
||||||
"sub_path": "filament/Snapmaker PETG Translucent @U1 base.json"
|
"sub_path": "filament/Snapmaker PLA Matte @U1 base.json"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Basic @U1 base",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Basic @U1 base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Full Spectrum @U1 0.4 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Full Spectrum @U1 0.4 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Glow @U1 base",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Glow @U1 base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Matte @U1 base2",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Matte @U1 base2.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Silk @U1 0.2 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Silk @U1 0.2 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Silk @U1 0.6 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Silk @U1 0.6 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Silk @U1 0.8 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Silk @U1 0.8 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA SnapSpeed @U1 base2",
|
|
||||||
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 base2.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Translucent @U1 base",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Translucent @U1 base.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Wood @U1 0.4 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Wood @U1 0.4 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Wood @U1 0.6 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Wood @U1 0.6 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Wood @U1 0.8 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Wood @U1 0.8 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA-CF @U1 0.4 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA-CF @U1 0.4 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA-CF @U1 0.6 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA-CF @U1 0.6 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA-CF @U1 0.8 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA-CF @U1 0.8 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PVA @U1 0.6 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PVA @U1 0.6 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PVA @U1 0.8 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PVA @U1 0.8 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker TPU 90A @U1",
|
|
||||||
"sub_path": "filament/Snapmaker TPU 90A @U1.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker TPU 90A @U1 0.6 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker TPU 90A @U1 0.6 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker TPU 90A @U1 0.8 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker TPU 90A @U1 0.8 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker TPU 95A HF @U1",
|
|
||||||
"sub_path": "filament/Snapmaker TPU 95A HF @U1.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker TPU 95A HF @U1 0.6 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker TPU 95A HF @U1 0.6 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker TPU 95A HF @U1 0.8 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker TPU 95A HF @U1 0.8 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Silk @U1",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Silk @U1.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Polymaker General PLA Family @U1",
|
|
||||||
"sub_path": "filament/Polymaker General PLA Family @U1.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PETG HF @U1 0.2 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PETG HF @U1 0.2 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PETG HF @U1 0.6 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PETG HF @U1 0.6 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PETG HF @U1 0.8 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PETG HF @U1 0.8 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PETG Translucent @U1 0.2 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.2 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PETG Translucent @U1 0.4 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.4 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PETG Translucent @U1 0.6 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.6 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PETG Translucent @U1 0.8 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.8 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Basic @U1",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Basic @U1.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Glow @U1 0.4 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Glow @U1 0.4 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Matte @U1 0.2 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Matte @U1 0.2 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Matte @U1 0.6 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Matte @U1 0.6 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Matte @U1 0.8 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Matte @U1 0.8 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA SnapSpeed @U1 0.2 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 0.2 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA SnapSpeed @U1 0.6 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 0.6 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA SnapSpeed @U1 0.8 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 0.8 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Translucent @U1 0.2 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.2 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Translucent @U1 0.4 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.4 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Translucent @U1 0.6 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.6 nozzle.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Translucent @U1 0.8 nozzle",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.8 nozzle.json"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"machine_list": [
|
"machine_list": [
|
||||||
@@ -2050,6 +2050,10 @@
|
|||||||
"name": "fdm_a400",
|
"name": "fdm_a400",
|
||||||
"sub_path": "machine/fdm_a400.json"
|
"sub_path": "machine/fdm_a400.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker U1 (0.2 nozzle)",
|
||||||
|
"sub_path": "machine/Snapmaker U1 (0.2 nozzle).json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Snapmaker U1 (0.4 nozzle)",
|
"name": "Snapmaker U1 (0.4 nozzle)",
|
||||||
"sub_path": "machine/Snapmaker U1 (0.4 nozzle).json"
|
"sub_path": "machine/Snapmaker U1 (0.4 nozzle).json"
|
||||||
@@ -2062,6 +2066,10 @@
|
|||||||
"name": "Snapmaker U1 (0.6 nozzle)",
|
"name": "Snapmaker U1 (0.6 nozzle)",
|
||||||
"sub_path": "machine/Snapmaker U1 (0.6 nozzle).json"
|
"sub_path": "machine/Snapmaker U1 (0.6 nozzle).json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker U1 (0.8 nozzle)",
|
||||||
|
"sub_path": "machine/Snapmaker U1 (0.8 nozzle).json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Snapmaker A250 BKit (0.2 nozzle)",
|
"name": "Snapmaker A250 BKit (0.2 nozzle)",
|
||||||
"sub_path": "machine/Snapmaker A250 BKit (0.2 nozzle).json"
|
"sub_path": "machine/Snapmaker A250 BKit (0.2 nozzle).json"
|
||||||
@@ -2325,14 +2333,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Snapmaker A350 Dual QS+B Kit (0.8 nozzle)",
|
"name": "Snapmaker A350 Dual QS+B Kit (0.8 nozzle)",
|
||||||
"sub_path": "machine/Snapmaker A350 Dual QS+B Kit (0.8 nozzle).json"
|
"sub_path": "machine/Snapmaker A350 Dual QS+B Kit (0.8 nozzle).json"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker U1 (0.2 nozzle)",
|
|
||||||
"sub_path": "machine/Snapmaker U1 (0.2 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Snapmaker U1 (0.8 nozzle)",
|
|
||||||
"sub_path": "machine/Snapmaker U1 (0.8 nozzle).json"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -201,82 +201,66 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"filament_list": [
|
"filament_list": [
|
||||||
{
|
|
||||||
"name": "Generic ABS @Sovol SV08 MAX",
|
|
||||||
"sub_path": "filament/Generic ABS @Sovol SV08 MAX.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PC @Sovol SV08 MAX",
|
|
||||||
"sub_path": "filament/Generic PC @Sovol SV08 MAX.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG @Sovol SV08 MAX",
|
|
||||||
"sub_path": "filament/Generic PETG @Sovol SV08 MAX.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA @Sovol SV08 MAX",
|
|
||||||
"sub_path": "filament/Generic PLA @Sovol SV08 MAX.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA Silk @Sovol SV08 MAX",
|
|
||||||
"sub_path": "filament/Generic PLA Silk @Sovol SV08 MAX.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic TPU @Sovol SV08 MAX",
|
|
||||||
"sub_path": "filament/Generic TPU @Sovol SV08 MAX.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Polymaker PETG @Sovol SV08 MAX",
|
|
||||||
"sub_path": "filament/Polymaker PETG @Sovol SV08 MAX.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "SUNLU PETG @Sovol SV08 MAX",
|
|
||||||
"sub_path": "filament/SUNLU PETG @Sovol SV08 MAX.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic ABS @Sovol SV06 ACE",
|
"name": "Generic ABS @Sovol SV06 ACE",
|
||||||
"sub_path": "filament/Generic ABS @Sovol SV06 ACE.json"
|
"sub_path": "filament/Generic ABS @Sovol SV06 ACE.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PETG @Sovol SV06 ACE",
|
|
||||||
"sub_path": "filament/Generic PETG @Sovol SV06 ACE.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PLA @Sovol SV06 ACE",
|
|
||||||
"sub_path": "filament/Generic PLA @Sovol SV06 ACE.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic TPU @Sovol SV06 ACE",
|
|
||||||
"sub_path": "filament/Generic TPU @Sovol SV06 ACE.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic ABS @Sovol SV06 Plus ACE",
|
"name": "Generic ABS @Sovol SV06 Plus ACE",
|
||||||
"sub_path": "filament/Generic ABS @Sovol SV06 Plus ACE.json"
|
"sub_path": "filament/Generic ABS @Sovol SV06 Plus ACE.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ABS @Sovol SV08",
|
||||||
|
"sub_path": "filament/Generic ABS @Sovol SV08.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ABS @Sovol SV08 MAX",
|
||||||
|
"sub_path": "filament/Generic ABS @Sovol SV08 MAX.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic ABS @Sovol Zero",
|
||||||
|
"sub_path": "filament/Generic ABS @Sovol Zero.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PC @Sovol SV08 MAX",
|
||||||
|
"sub_path": "filament/Generic PC @Sovol SV08 MAX.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PC @Sovol Zero",
|
||||||
|
"sub_path": "filament/Generic PC @Sovol Zero.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG @Sovol SV06 ACE",
|
||||||
|
"sub_path": "filament/Generic PETG @Sovol SV06 ACE.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PETG @Sovol SV06 Plus ACE",
|
"name": "Generic PETG @Sovol SV06 Plus ACE",
|
||||||
"sub_path": "filament/Generic PETG @Sovol SV06 Plus ACE.json"
|
"sub_path": "filament/Generic PETG @Sovol SV06 Plus ACE.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG @Sovol SV08",
|
||||||
|
"sub_path": "filament/Generic PETG @Sovol SV08.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG @Sovol SV08 MAX",
|
||||||
|
"sub_path": "filament/Generic PETG @Sovol SV08 MAX.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG @Sovol Zero",
|
||||||
|
"sub_path": "filament/Generic PETG @Sovol Zero.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA @Sovol SV06 ACE",
|
||||||
|
"sub_path": "filament/Generic PLA @Sovol SV06 ACE.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PLA @Sovol SV06 Plus ACE",
|
"name": "Generic PLA @Sovol SV06 Plus ACE",
|
||||||
"sub_path": "filament/Generic PLA @Sovol SV06 Plus ACE.json"
|
"sub_path": "filament/Generic PLA @Sovol SV06 Plus ACE.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic TPU @Sovol SV06 Plus ACE",
|
|
||||||
"sub_path": "filament/Generic TPU @Sovol SV06 Plus ACE.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PLA @Sovol SV07",
|
"name": "Generic PLA @Sovol SV07",
|
||||||
"sub_path": "filament/Generic PLA @Sovol SV07.json"
|
"sub_path": "filament/Generic PLA @Sovol SV07.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic ABS @Sovol SV08",
|
|
||||||
"sub_path": "filament/Generic ABS @Sovol SV08.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG @Sovol SV08",
|
|
||||||
"sub_path": "filament/Generic PETG @Sovol SV08.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PLA @Sovol SV08",
|
"name": "Generic PLA @Sovol SV08",
|
||||||
"sub_path": "filament/Generic PLA @Sovol SV08.json"
|
"sub_path": "filament/Generic PLA @Sovol SV08.json"
|
||||||
@@ -286,44 +270,60 @@
|
|||||||
"sub_path": "filament/Generic PLA @Sovol SV08 0.2 nozzle.json"
|
"sub_path": "filament/Generic PLA @Sovol SV08 0.2 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic TPU @Sovol SV08",
|
"name": "Generic PLA @Sovol SV08 MAX",
|
||||||
"sub_path": "filament/Generic TPU @Sovol SV08.json"
|
"sub_path": "filament/Generic PLA @Sovol SV08 MAX.json"
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic ABS @Sovol Zero",
|
|
||||||
"sub_path": "filament/Generic ABS @Sovol Zero.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PC @Sovol Zero",
|
|
||||||
"sub_path": "filament/Generic PC @Sovol Zero.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Generic PETG @Sovol Zero",
|
|
||||||
"sub_path": "filament/Generic PETG @Sovol Zero.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Sovol Zero PETG HS Nozzle",
|
|
||||||
"sub_path": "filament/Sovol Zero PETG HS Nozzle.json"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PLA @Sovol Zero",
|
"name": "Generic PLA @Sovol Zero",
|
||||||
"sub_path": "filament/Generic PLA @Sovol Zero.json"
|
"sub_path": "filament/Generic PLA @Sovol Zero.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Sovol Zero PLA Basic HS Nozzle",
|
"name": "Generic PLA Silk @Sovol SV08 MAX",
|
||||||
"sub_path": "filament/Sovol Zero PLA Basic HS Nozzle.json"
|
"sub_path": "filament/Generic PLA Silk @Sovol SV08 MAX.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PLA Silk @Sovol Zero",
|
"name": "Generic PLA Silk @Sovol Zero",
|
||||||
"sub_path": "filament/Generic PLA Silk @Sovol Zero.json"
|
"sub_path": "filament/Generic PLA Silk @Sovol Zero.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Sovol Zero PLA Silk HS Nozzle",
|
"name": "Generic TPU @Sovol SV06 ACE",
|
||||||
"sub_path": "filament/Sovol Zero PLA Silk HS Nozzle.json"
|
"sub_path": "filament/Generic TPU @Sovol SV06 ACE.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic TPU @Sovol SV06 Plus ACE",
|
||||||
|
"sub_path": "filament/Generic TPU @Sovol SV06 Plus ACE.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic TPU @Sovol SV08",
|
||||||
|
"sub_path": "filament/Generic TPU @Sovol SV08.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic TPU @Sovol SV08 MAX",
|
||||||
|
"sub_path": "filament/Generic TPU @Sovol SV08 MAX.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic TPU @Sovol Zero",
|
"name": "Generic TPU @Sovol Zero",
|
||||||
"sub_path": "filament/Generic TPU @Sovol Zero.json"
|
"sub_path": "filament/Generic TPU @Sovol Zero.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Polymaker PETG @Sovol SV08 MAX",
|
||||||
|
"sub_path": "filament/Polymaker PETG @Sovol SV08 MAX.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "SUNLU PETG @Sovol SV08 MAX",
|
||||||
|
"sub_path": "filament/SUNLU PETG @Sovol SV08 MAX.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Sovol Zero PETG HS Nozzle",
|
||||||
|
"sub_path": "filament/Sovol Zero PETG HS Nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Sovol Zero PLA Basic HS Nozzle",
|
||||||
|
"sub_path": "filament/Sovol Zero PLA Basic HS Nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Sovol Zero PLA Silk HS Nozzle",
|
||||||
|
"sub_path": "filament/Sovol Zero PLA Silk HS Nozzle.json"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"machine_list": [
|
"machine_list": [
|
||||||
|
|||||||
@@ -360,14 +360,6 @@
|
|||||||
"name": "fdm_filament_tpu",
|
"name": "fdm_filament_tpu",
|
||||||
"sub_path": "filament/fdm_filament_tpu.json"
|
"sub_path": "filament/fdm_filament_tpu.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Tiertime ABS",
|
|
||||||
"sub_path": "filament/Tiertime ABS.json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Tiertime ABS@300HS",
|
|
||||||
"sub_path": "filament/Tiertime ABS@300HS.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic ABS @Tiertime",
|
"name": "Generic ABS @Tiertime",
|
||||||
"sub_path": "filament/Generic ABS @Tiertime.json"
|
"sub_path": "filament/Generic ABS @Tiertime.json"
|
||||||
@@ -377,12 +369,12 @@
|
|||||||
"sub_path": "filament/Generic ABS @Tiertime 300HS.json"
|
"sub_path": "filament/Generic ABS @Tiertime 300HS.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Tiertime ASA",
|
"name": "Tiertime ABS",
|
||||||
"sub_path": "filament/Tiertime ASA.json"
|
"sub_path": "filament/Tiertime ABS.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Tiertime ASA@300HS",
|
"name": "Tiertime ABS@300HS",
|
||||||
"sub_path": "filament/Tiertime ASA@300HS.json"
|
"sub_path": "filament/Tiertime ABS@300HS.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic ASA @Tiertime",
|
"name": "Generic ASA @Tiertime",
|
||||||
@@ -392,6 +384,14 @@
|
|||||||
"name": "Generic ASA @Tiertime 300HS",
|
"name": "Generic ASA @Tiertime 300HS",
|
||||||
"sub_path": "filament/Generic ASA @Tiertime 300HS.json"
|
"sub_path": "filament/Generic ASA @Tiertime 300HS.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Tiertime ASA",
|
||||||
|
"sub_path": "filament/Tiertime ASA.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Tiertime ASA@300HS",
|
||||||
|
"sub_path": "filament/Tiertime ASA@300HS.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic BVOH @Tiertime",
|
"name": "Generic BVOH @Tiertime",
|
||||||
"sub_path": "filament/Generic BVOH @Tiertime.json"
|
"sub_path": "filament/Generic BVOH @Tiertime.json"
|
||||||
@@ -420,6 +420,10 @@
|
|||||||
"name": "Generic PA @Tiertime",
|
"name": "Generic PA @Tiertime",
|
||||||
"sub_path": "filament/Generic PA @Tiertime.json"
|
"sub_path": "filament/Generic PA @Tiertime.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PA @Tiertime 300HS",
|
||||||
|
"sub_path": "filament/Generic PA @Tiertime 300HS.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PA-CF @Tiertime",
|
"name": "Generic PA-CF @Tiertime",
|
||||||
"sub_path": "filament/Generic PA-CF @Tiertime.json"
|
"sub_path": "filament/Generic PA-CF @Tiertime.json"
|
||||||
@@ -428,10 +432,6 @@
|
|||||||
"name": "Generic PA-CF @Tiertime 300HS",
|
"name": "Generic PA-CF @Tiertime 300HS",
|
||||||
"sub_path": "filament/Generic PA-CF @Tiertime 300HS.json"
|
"sub_path": "filament/Generic PA-CF @Tiertime 300HS.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PA @Tiertime 300HS",
|
|
||||||
"sub_path": "filament/Generic PA @Tiertime 300HS.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Tiertime PA6-CF",
|
"name": "Tiertime PA6-CF",
|
||||||
"sub_path": "filament/Tiertime PA6-CF.json"
|
"sub_path": "filament/Tiertime PA6-CF.json"
|
||||||
@@ -468,6 +468,10 @@
|
|||||||
"name": "Generic PE @Tiertime",
|
"name": "Generic PE @Tiertime",
|
||||||
"sub_path": "filament/Generic PE @Tiertime.json"
|
"sub_path": "filament/Generic PE @Tiertime.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PE @Tiertime 300HS",
|
||||||
|
"sub_path": "filament/Generic PE @Tiertime 300HS.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PE-CF @Tiertime",
|
"name": "Generic PE-CF @Tiertime",
|
||||||
"sub_path": "filament/Generic PE-CF @Tiertime.json"
|
"sub_path": "filament/Generic PE-CF @Tiertime.json"
|
||||||
@@ -476,14 +480,14 @@
|
|||||||
"name": "Generic PE-CF @Tiertime 300HS",
|
"name": "Generic PE-CF @Tiertime 300HS",
|
||||||
"sub_path": "filament/Generic PE-CF @Tiertime 300HS.json"
|
"sub_path": "filament/Generic PE-CF @Tiertime 300HS.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PE @Tiertime 300HS",
|
|
||||||
"sub_path": "filament/Generic PE @Tiertime 300HS.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PETG @Tiertime",
|
"name": "Generic PETG @Tiertime",
|
||||||
"sub_path": "filament/Generic PETG @Tiertime.json"
|
"sub_path": "filament/Generic PETG @Tiertime.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PETG @Tiertime 300HS",
|
||||||
|
"sub_path": "filament/Generic PETG @Tiertime 300HS.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PETG-CF @Tiertime",
|
"name": "Generic PETG-CF @Tiertime",
|
||||||
"sub_path": "filament/Generic PETG-CF @Tiertime.json"
|
"sub_path": "filament/Generic PETG-CF @Tiertime.json"
|
||||||
@@ -492,10 +496,6 @@
|
|||||||
"name": "Generic PETG-CF @Tiertime 300HS",
|
"name": "Generic PETG-CF @Tiertime 300HS",
|
||||||
"sub_path": "filament/Generic PETG-CF @Tiertime 300HS.json"
|
"sub_path": "filament/Generic PETG-CF @Tiertime 300HS.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PETG @Tiertime 300HS",
|
|
||||||
"sub_path": "filament/Generic PETG @Tiertime 300HS.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Tiertime PET-CF",
|
"name": "Tiertime PET-CF",
|
||||||
"sub_path": "filament/Tiertime PET-CF.json"
|
"sub_path": "filament/Tiertime PET-CF.json"
|
||||||
@@ -524,6 +524,10 @@
|
|||||||
"name": "Generic PLA @Tiertime",
|
"name": "Generic PLA @Tiertime",
|
||||||
"sub_path": "filament/Generic PLA @Tiertime.json"
|
"sub_path": "filament/Generic PLA @Tiertime.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PLA @Tiertime 300HS",
|
||||||
|
"sub_path": "filament/Generic PLA @Tiertime 300HS.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PLA High Speed @Tiertime",
|
"name": "Generic PLA High Speed @Tiertime",
|
||||||
"sub_path": "filament/Generic PLA High Speed @Tiertime.json"
|
"sub_path": "filament/Generic PLA High Speed @Tiertime.json"
|
||||||
@@ -548,10 +552,6 @@
|
|||||||
"name": "Generic PLA-CF @Tiertime 300HS",
|
"name": "Generic PLA-CF @Tiertime 300HS",
|
||||||
"sub_path": "filament/Generic PLA-CF @Tiertime 300HS.json"
|
"sub_path": "filament/Generic PLA-CF @Tiertime 300HS.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PLA @Tiertime 300HS",
|
|
||||||
"sub_path": "filament/Generic PLA @Tiertime 300HS.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Tiertime PLA",
|
"name": "Tiertime PLA",
|
||||||
"sub_path": "filament/Tiertime PLA.json"
|
"sub_path": "filament/Tiertime PLA.json"
|
||||||
@@ -572,6 +572,10 @@
|
|||||||
"name": "Generic PP @Tiertime",
|
"name": "Generic PP @Tiertime",
|
||||||
"sub_path": "filament/Generic PP @Tiertime.json"
|
"sub_path": "filament/Generic PP @Tiertime.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PP @Tiertime 300HS",
|
||||||
|
"sub_path": "filament/Generic PP @Tiertime 300HS.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PP-CF @Tiertime",
|
"name": "Generic PP-CF @Tiertime",
|
||||||
"sub_path": "filament/Generic PP-CF @Tiertime.json"
|
"sub_path": "filament/Generic PP-CF @Tiertime.json"
|
||||||
@@ -588,10 +592,6 @@
|
|||||||
"name": "Generic PP-GF @Tiertime 300HS",
|
"name": "Generic PP-GF @Tiertime 300HS",
|
||||||
"sub_path": "filament/Generic PP-GF @Tiertime 300HS.json"
|
"sub_path": "filament/Generic PP-GF @Tiertime 300HS.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PP @Tiertime 300HS",
|
|
||||||
"sub_path": "filament/Generic PP @Tiertime 300HS.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PPA-CF @Tiertime",
|
"name": "Generic PPA-CF @Tiertime",
|
||||||
"sub_path": "filament/Generic PPA-CF @Tiertime.json"
|
"sub_path": "filament/Generic PPA-CF @Tiertime.json"
|
||||||
@@ -612,6 +612,10 @@
|
|||||||
"name": "Generic PPS @Tiertime",
|
"name": "Generic PPS @Tiertime",
|
||||||
"sub_path": "filament/Generic PPS @Tiertime.json"
|
"sub_path": "filament/Generic PPS @Tiertime.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic PPS @Tiertime 300HS",
|
||||||
|
"sub_path": "filament/Generic PPS @Tiertime 300HS.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Generic PPS-CF @Tiertime",
|
"name": "Generic PPS-CF @Tiertime",
|
||||||
"sub_path": "filament/Generic PPS-CF @Tiertime.json"
|
"sub_path": "filament/Generic PPS-CF @Tiertime.json"
|
||||||
@@ -620,10 +624,6 @@
|
|||||||
"name": "Generic PPS-CF @Tiertime 300HS",
|
"name": "Generic PPS-CF @Tiertime 300HS",
|
||||||
"sub_path": "filament/Generic PPS-CF @Tiertime 300HS.json"
|
"sub_path": "filament/Generic PPS-CF @Tiertime 300HS.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Generic PPS @Tiertime 300HS",
|
|
||||||
"sub_path": "filament/Generic PPS @Tiertime 300HS.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic PVA @Tiertime",
|
"name": "Generic PVA @Tiertime",
|
||||||
"sub_path": "filament/Generic PVA @Tiertime.json"
|
"sub_path": "filament/Generic PVA @Tiertime.json"
|
||||||
|
|||||||
@@ -80,13 +80,13 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"filament_list": [
|
"filament_list": [
|
||||||
{
|
|
||||||
"name": "Generic TPU 95A @TwoTrees SK1",
|
|
||||||
"sub_path": "filament/Generic TPU 95A @TwoTrees SK1.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Generic HS PLA @TwoTrees SK1",
|
"name": "Generic HS PLA @TwoTrees SK1",
|
||||||
"sub_path": "filament/Generic HS PLA @TwoTrees SK1.json"
|
"sub_path": "filament/Generic HS PLA @TwoTrees SK1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Generic TPU 95A @TwoTrees SK1",
|
||||||
|
"sub_path": "filament/Generic TPU 95A @TwoTrees SK1.json"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"machine_list": [
|
"machine_list": [
|
||||||
|
|||||||
@@ -4,9 +4,5 @@
|
|||||||
],
|
],
|
||||||
"process": [
|
"process": [
|
||||||
"GP008"
|
"GP008"
|
||||||
],
|
]
|
||||||
"machine_model_list": [],
|
|
||||||
"process_list": [],
|
|
||||||
"filament_list": [],
|
|
||||||
"machine_list": []
|
|
||||||
}
|
}
|
||||||
|
|||||||
+12
-12
@@ -56,6 +56,14 @@
|
|||||||
"name": "fdm_process_tiq_common",
|
"name": "fdm_process_tiq_common",
|
||||||
"sub_path": "process/fdm_process_tiq_common.json"
|
"sub_path": "process/fdm_process_tiq_common.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.15mm Standard @iQ TiQ2 (0.25 Nozzle)",
|
||||||
|
"sub_path": "process/0.15mm Standard @iQ TiQ2 (0.25 Nozzle).json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "0.15mm Standard @iQ TiQ8 (0.25 Nozzle)",
|
||||||
|
"sub_path": "process/0.15mm Standard @iQ TiQ8 (0.25 Nozzle).json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.20mm Standard @iQ TiQ2 P1 - HPP4GF25 Grauts (0.4 Nozzle)",
|
"name": "0.20mm Standard @iQ TiQ2 P1 - HPP4GF25 Grauts (0.4 Nozzle)",
|
||||||
"sub_path": "process/0.20mm Standard @iQ TiQ2 P1 - HPP4GF25 Grauts (0.4 Nozzle).json"
|
"sub_path": "process/0.20mm Standard @iQ TiQ2 P1 - HPP4GF25 Grauts (0.4 Nozzle).json"
|
||||||
@@ -76,26 +84,18 @@
|
|||||||
"name": "0.20mm Standard @iQ TiQ8 P1 - ABS Natur Material4Print (0.4 Nozzle)",
|
"name": "0.20mm Standard @iQ TiQ8 P1 - ABS Natur Material4Print (0.4 Nozzle)",
|
||||||
"sub_path": "process/0.20mm Standard @iQ TiQ8 P1 - ABS Natur Material4Print (0.4 Nozzle).json"
|
"sub_path": "process/0.20mm Standard @iQ TiQ8 P1 - ABS Natur Material4Print (0.4 Nozzle).json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "0.15mm Standard @iQ TiQ2 (0.25 Nozzle)",
|
|
||||||
"sub_path": "process/0.15mm Standard @iQ TiQ2 (0.25 Nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "0.30mm Standard @iQ TiQ2 (0.6 Nozzle)",
|
"name": "0.30mm Standard @iQ TiQ2 (0.6 Nozzle)",
|
||||||
"sub_path": "process/0.30mm Standard @iQ TiQ2 (0.6 Nozzle).json"
|
"sub_path": "process/0.30mm Standard @iQ TiQ2 (0.6 Nozzle).json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "0.40mm Standard @iQ TiQ2 (0.8 Nozzle)",
|
|
||||||
"sub_path": "process/0.40mm Standard @iQ TiQ2 (0.8 Nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "0.15mm Standard @iQ TiQ8 (0.25 Nozzle)",
|
|
||||||
"sub_path": "process/0.15mm Standard @iQ TiQ8 (0.25 Nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "0.30mm Standard @iQ TiQ8 (0.6 Nozzle)",
|
"name": "0.30mm Standard @iQ TiQ8 (0.6 Nozzle)",
|
||||||
"sub_path": "process/0.30mm Standard @iQ TiQ8 (0.6 Nozzle).json"
|
"sub_path": "process/0.30mm Standard @iQ TiQ8 (0.6 Nozzle).json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "0.40mm Standard @iQ TiQ2 (0.8 Nozzle)",
|
||||||
|
"sub_path": "process/0.40mm Standard @iQ TiQ2 (0.8 Nozzle).json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.40mm Standard @iQ TiQ8 (0.8 Nozzle)",
|
"name": "0.40mm Standard @iQ TiQ8 (0.8 Nozzle)",
|
||||||
"sub_path": "process/0.40mm Standard @iQ TiQ8 (0.8 Nozzle).json"
|
"sub_path": "process/0.40mm Standard @iQ TiQ8 (0.8 Nozzle).json"
|
||||||
|
|||||||
+197
-197
@@ -1,199 +1,199 @@
|
|||||||
{
|
{
|
||||||
"name": "re3D",
|
"name": "re3D",
|
||||||
"url": "",
|
"url": "",
|
||||||
"version": "03.00.10",
|
"version": "03.00.10",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "re3D configurations",
|
"description": "re3D configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
{
|
{
|
||||||
"name": "re3D Gigabot 4",
|
"name": "re3D Gigabot 4",
|
||||||
"sub_path": "machine/re3D Gigabot 4.json"
|
"sub_path": "machine/re3D Gigabot 4.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D Gigabot 4 XLT",
|
"name": "re3D Gigabot 4 XLT",
|
||||||
"sub_path": "machine/re3D Gigabot 4 XLT.json"
|
"sub_path": "machine/re3D Gigabot 4 XLT.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D GigabotX 2",
|
"name": "re3D GigabotX 2",
|
||||||
"sub_path": "machine/re3D GigabotX 2.json"
|
"sub_path": "machine/re3D GigabotX 2.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D GigabotX 2 XLT",
|
"name": "re3D GigabotX 2 XLT",
|
||||||
"sub_path": "machine/re3D GigabotX 2 XLT.json"
|
"sub_path": "machine/re3D GigabotX 2 XLT.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D Terabot 4",
|
"name": "re3D Terabot 4",
|
||||||
"sub_path": "machine/re3D Terabot 4.json"
|
"sub_path": "machine/re3D Terabot 4.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D TerabotX 2",
|
"name": "re3D TerabotX 2",
|
||||||
"sub_path": "machine/re3D TerabotX 2.json"
|
"sub_path": "machine/re3D TerabotX 2.json"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"process_list": [
|
"process_list": [
|
||||||
{
|
{
|
||||||
"name": "fdm_process_common",
|
"name": "fdm_process_common",
|
||||||
"sub_path": "process/fdm_process_common.json"
|
"sub_path": "process/fdm_process_common.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "fdm_process_re3D_common",
|
"name": "fdm_process_re3D_common",
|
||||||
"sub_path": "process/fdm_process_re3D_common.json"
|
"sub_path": "process/fdm_process_re3D_common.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "fgf_process_re3D_common",
|
"name": "fgf_process_re3D_common",
|
||||||
"sub_path": "process/fgf_process_re3D_common.json"
|
"sub_path": "process/fgf_process_re3D_common.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0.2 Fine",
|
"name": "0.2 Fine",
|
||||||
"sub_path": "process/0.2mm Fine @re3D fdm 0.4.json"
|
"sub_path": "process/0.2mm Fine @re3D fdm 0.4.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0.26 Standard",
|
"name": "0.26 Standard",
|
||||||
"sub_path": "process/0.26mm Standard @re3D fdm 0.4.json"
|
"sub_path": "process/0.26mm Standard @re3D fdm 0.4.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0.32 Draft",
|
"name": "0.3 Fine",
|
||||||
"sub_path": "process/0.32mm Draft @re3D fdm 0.4.json"
|
"sub_path": "process/0.3mm Fine @re3D fdm 0.8.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0.3 Fine",
|
"name": "0.32 Draft",
|
||||||
"sub_path": "process/0.3mm Fine @re3D fdm 0.8.json"
|
"sub_path": "process/0.32mm Draft @re3D fdm 0.4.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0.4 Standard",
|
"name": "0.4 Standard",
|
||||||
"sub_path": "process/0.4mm Draft @re3D fdm 0.8.json"
|
"sub_path": "process/0.4mm Draft @re3D fdm 0.8.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "1.0 Standard",
|
"name": "0.6 Standard",
|
||||||
"sub_path": "process/1.0mm Standard @re3D fgf 1.75.json"
|
"sub_path": "process/0.6mm Standard @re3D fgf 0.8.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0.6 Standard",
|
"name": "1.0 Standard",
|
||||||
"sub_path": "process/0.6mm Standard @re3D fgf 0.8.json"
|
"sub_path": "process/1.0mm Standard @re3D fgf 1.75.json"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"filament_list": [
|
"filament_list": [
|
||||||
{
|
{
|
||||||
"name": "fdm_filament_common",
|
"name": "fdm_filament_common",
|
||||||
"sub_path": "filament/fdm_filament_common.json"
|
"sub_path": "filament/fdm_filament_common.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "fdm_filament_pla",
|
"name": "fdm_filament_pc",
|
||||||
"sub_path": "filament/fdm_filament_pla.json"
|
"sub_path": "filament/fdm_filament_pc.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "fdm_filament_pet",
|
"name": "fdm_filament_pet",
|
||||||
"sub_path": "filament/fdm_filament_pet.json"
|
"sub_path": "filament/fdm_filament_pet.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "fdm_filament_pp",
|
"name": "fdm_filament_pla",
|
||||||
"sub_path": "filament/fdm_filament_pp.json"
|
"sub_path": "filament/fdm_filament_pla.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "fdm_filament_pc",
|
"name": "fdm_filament_pp",
|
||||||
"sub_path": "filament/fdm_filament_pc.json"
|
"sub_path": "filament/fdm_filament_pp.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D PLA @0.4 nozzle",
|
"name": "re3D PC @0.4 nozzle",
|
||||||
"sub_path": "filament/re3D PLA @0.4 nozzle.json"
|
"sub_path": "filament/re3D PC @0.4 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D PLA @0.8 nozzle",
|
"name": "re3D PC @0.8 nozzle",
|
||||||
"sub_path": "filament/re3D PLA @0.8 nozzle.json"
|
"sub_path": "filament/re3D PC @0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D PETG @0.4 nozzle",
|
"name": "re3D PETG @0.4 nozzle",
|
||||||
"sub_path": "filament/re3D PETG @0.4 nozzle.json"
|
"sub_path": "filament/re3D PETG @0.4 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D PETG @0.8 nozzle",
|
"name": "re3D PETG @0.8 nozzle",
|
||||||
"sub_path": "filament/re3D PETG @0.8 nozzle.json"
|
"sub_path": "filament/re3D PETG @0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D PC @0.4 nozzle",
|
"name": "re3D rPETG @0.8 nozzle",
|
||||||
"sub_path": "filament/re3D PC @0.4 nozzle.json"
|
"sub_path": "filament/re3D rPETG @0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D PC @0.8 nozzle",
|
"name": "re3D rPETG @1.75 nozzle",
|
||||||
"sub_path": "filament/re3D PC @0.8 nozzle.json"
|
"sub_path": "filament/re3D rPETG @1.75 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D rPETG @0.8 nozzle",
|
"name": "re3D PLA @0.4 nozzle",
|
||||||
"sub_path": "filament/re3D rPETG @0.8 nozzle.json"
|
"sub_path": "filament/re3D PLA @0.4 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D rPETG @1.75 nozzle",
|
"name": "re3D PLA @0.8 nozzle",
|
||||||
"sub_path": "filament/re3D rPETG @1.75 nozzle.json"
|
"sub_path": "filament/re3D PLA @0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D rPP @0.8 nozzle",
|
"name": "re3D rPP @0.8 nozzle",
|
||||||
"sub_path": "filament/re3D rPP @0.8 nozzle.json"
|
"sub_path": "filament/re3D rPP @0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D rPP @1.75 nozzle",
|
"name": "re3D rPP @1.75 nozzle",
|
||||||
"sub_path": "filament/re3D rPP @1.75 nozzle.json"
|
"sub_path": "filament/re3D rPP @1.75 nozzle.json"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"machine_list": [
|
"machine_list": [
|
||||||
{
|
{
|
||||||
"name": "fdm_machine_common",
|
"name": "fdm_machine_common",
|
||||||
"sub_path": "machine/fdm_machine_common.json"
|
"sub_path": "machine/fdm_machine_common.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "fdm_re3D_common",
|
"name": "fdm_re3D_common",
|
||||||
"sub_path": "machine/fdm_re3D_common.json"
|
"sub_path": "machine/fdm_re3D_common.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "fgf_re3D_common",
|
"name": "fgf_re3D_common",
|
||||||
"sub_path": "machine/fgf_re3D_common.json"
|
"sub_path": "machine/fgf_re3D_common.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D Gigabot 4 0.4 nozzle",
|
"name": "re3D Gigabot 4 0.4 nozzle",
|
||||||
"sub_path": "machine/re3D Gigabot 4 0.4 nozzle.json"
|
"sub_path": "machine/re3D Gigabot 4 0.4 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D Gigabot 4 0.8 nozzle",
|
"name": "re3D Gigabot 4 0.8 nozzle",
|
||||||
"sub_path": "machine/re3D Gigabot 4 0.8 nozzle.json"
|
"sub_path": "machine/re3D Gigabot 4 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D Gigabot 4 XLT 0.4 nozzle",
|
"name": "re3D Gigabot 4 XLT 0.4 nozzle",
|
||||||
"sub_path": "machine/re3D Gigabot 4 XLT 0.4 nozzle.json"
|
"sub_path": "machine/re3D Gigabot 4 XLT 0.4 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D Gigabot 4 XLT 0.8 nozzle",
|
"name": "re3D Gigabot 4 XLT 0.8 nozzle",
|
||||||
"sub_path": "machine/re3D Gigabot 4 XLT 0.8 nozzle.json"
|
"sub_path": "machine/re3D Gigabot 4 XLT 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D GigabotX 2 0.8 nozzle",
|
"name": "re3D Terabot 4 0.4 nozzle",
|
||||||
"sub_path": "machine/re3D GigabotX 2 0.8 nozzle.json"
|
"sub_path": "machine/re3D Terabot 4 0.4 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D GigabotX 2 1.75 nozzle",
|
"name": "re3D Terabot 4 0.8 nozzle",
|
||||||
"sub_path": "machine/re3D GigabotX 2 1.75 nozzle.json"
|
"sub_path": "machine/re3D Terabot 4 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D GigabotX 2 XLT 0.8 nozzle",
|
"name": "re3D GigabotX 2 0.8 nozzle",
|
||||||
"sub_path": "machine/re3D GigabotX 2 XLT 0.8 nozzle.json"
|
"sub_path": "machine/re3D GigabotX 2 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D GigabotX 2 XLT 1.75 nozzle",
|
"name": "re3D GigabotX 2 1.75 nozzle",
|
||||||
"sub_path": "machine/re3D GigabotX 2 XLT 1.75 nozzle.json"
|
"sub_path": "machine/re3D GigabotX 2 1.75 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D Terabot 4 0.4 nozzle",
|
"name": "re3D GigabotX 2 XLT 0.8 nozzle",
|
||||||
"sub_path": "machine/re3D Terabot 4 0.4 nozzle.json"
|
"sub_path": "machine/re3D GigabotX 2 XLT 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D Terabot 4 0.8 nozzle",
|
"name": "re3D GigabotX 2 XLT 1.75 nozzle",
|
||||||
"sub_path": "machine/re3D Terabot 4 0.8 nozzle.json"
|
"sub_path": "machine/re3D GigabotX 2 XLT 1.75 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D TerabotX 2 0.8 nozzle",
|
"name": "re3D TerabotX 2 0.8 nozzle",
|
||||||
"sub_path": "machine/re3D TerabotX 2 0.8 nozzle.json"
|
"sub_path": "machine/re3D TerabotX 2 0.8 nozzle.json"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "re3D TerabotX 2 1.75 nozzle",
|
"name": "re3D TerabotX 2 1.75 nozzle",
|
||||||
"sub_path": "machine/re3D TerabotX 2 1.75 nozzle.json"
|
"sub_path": "machine/re3D TerabotX 2 1.75 nozzle.json"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
+16
-11
@@ -9,12 +9,17 @@
|
|||||||
same semantics: every check runs even after an earlier one fails (the workflow's
|
same semantics: every check runs even after an earlier one fails (the workflow's
|
||||||
continue-on-error), then the script exits non-zero once at the end.
|
continue-on-error), then the script exits non-zero once at the end.
|
||||||
|
|
||||||
extra_json_check scripts/orca_extra_profile_check.py
|
profile_tool scripts/orca_profile_tool.py check
|
||||||
validate_system validator -p <profiles> -l <level>
|
validate_system validator -p <profiles> -l <level>
|
||||||
validate_slice validator -p <profiles> -s -l <level>
|
validate_slice validator -p <profiles> -s -l <level>
|
||||||
validate_filament_subtypes validator -p <profiles> -l <level> -f
|
validate_filament_subtypes validator -p <profiles> -l <level> -f
|
||||||
validate_custom validator against every released custom-preset fixture
|
validate_custom validator against every released custom-preset fixture
|
||||||
|
|
||||||
|
profile_tool is the only check that is not the validator binary; it makes the static checks
|
||||||
|
the validator cannot, because the validator loads the tree the way the slicer does and so
|
||||||
|
never sees a profile no <vendor>.json indexes, a preset name two files claim, or a file
|
||||||
|
normalize and update-index would still rewrite.
|
||||||
|
|
||||||
Everything that has to be downloaded - the profile validator and the custom-preset fixture
|
Everything that has to be downloaded - the profile validator and the custom-preset fixture
|
||||||
archives - lands under <repo>\.test\check_profiles and is reused on the next run. That
|
archives - lands under <repo>\.test\check_profiles and is reused on the next run. That
|
||||||
directory also holds one log per check plus a copy of the comment CI would post on the PR.
|
directory also holds one log per check plus a copy of the comment CI would post on the PR.
|
||||||
@@ -33,15 +38,15 @@
|
|||||||
under emulation on ARM64.
|
under emulation on ARM64.
|
||||||
|
|
||||||
.PARAMETER ProfilesDir
|
.PARAMETER ProfilesDir
|
||||||
Profile tree to validate (default: resources\profiles). extra_json_check always looks at the
|
Profile tree to validate (default: resources\profiles). profile_tool always looks at the
|
||||||
tree next to the script, so this only redirects the validator checks.
|
tree next to the script, so this only redirects the validator checks.
|
||||||
|
|
||||||
.PARAMETER Vendor
|
.PARAMETER Vendor
|
||||||
Check only this vendor, named after its <Vendor>.json (e.g. "Co Print"). validate_custom is
|
Check only this vendor, named after its <Vendor>.json (e.g. "Co Print"). validate_custom is
|
||||||
narrowed with it too, by keeping only that vendor's presets in each fixture tree. The one
|
narrowed with it too, by keeping only that vendor's presets in each fixture tree. The one
|
||||||
check it cannot narrow is validate_slice for a vendor that ships no printers; the summary
|
check it cannot narrow is validate_slice for a vendor that ships no printers; the summary
|
||||||
reports that one as skipped, and naming it explicitly still runs it. extra_json_check keeps
|
reports that one as skipped, and naming it explicitly still runs it. profile_tool keeps its
|
||||||
its two cross-vendor checks (setting_id and filament_id) tree-wide, so a scoped run can still
|
two cross-vendor checks (setting_id and filament_id) tree-wide, so a scoped run can still
|
||||||
fail on another vendor's files.
|
fail on another vendor's files.
|
||||||
|
|
||||||
.PARAMETER Validator
|
.PARAMETER Validator
|
||||||
@@ -110,7 +115,7 @@ $HostArch = switch ($HostArch) {
|
|||||||
default { 'x86' }
|
default { 'x86' }
|
||||||
}
|
}
|
||||||
|
|
||||||
$AllChecks = @('extra_json_check', 'validate_system', 'validate_slice', 'validate_filament_subtypes', 'validate_custom')
|
$AllChecks = @('profile_tool', 'validate_system', 'validate_slice', 'validate_filament_subtypes', 'validate_custom')
|
||||||
|
|
||||||
$script:LogWriter = $null
|
$script:LogWriter = $null
|
||||||
$script:Python = ''
|
$script:Python = ''
|
||||||
@@ -203,7 +208,7 @@ if ($Vendor) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# The validator's -v and orca_extra_profile_check.py's --vendor both take that stem; an unscoped
|
# The validator's -v and orca_profile_tool.py check's --vendor both take that stem; an unscoped
|
||||||
# run passes neither, so the checks below splat these in either way.
|
# run passes neither, so the checks below splat these in either way.
|
||||||
$VendorArgs = if ($Vendor) { @('-v', $Vendor) } else { @() }
|
$VendorArgs = if ($Vendor) { @('-v', $Vendor) } else { @() }
|
||||||
$VendorPyArgs = if ($Vendor) { @('--vendor', $Vendor) } else { @() }
|
$VendorPyArgs = if ($Vendor) { @('--vendor', $Vendor) } else { @() }
|
||||||
@@ -434,8 +439,8 @@ function Expand-VendorPresets([string] $Zip, [string] $Tree, [string] $Prefix) {
|
|||||||
|
|
||||||
$CheckBodies = @{
|
$CheckBodies = @{
|
||||||
|
|
||||||
extra_json_check = {
|
profile_tool = {
|
||||||
Invoke-Tool -Exe (Resolve-Python) -Arguments (@((Join-Path $RepoRoot 'scripts\orca_extra_profile_check.py')) + $VendorPyArgs)
|
Invoke-Tool -Exe (Resolve-Python) -Arguments (@((Join-Path $RepoRoot 'scripts\orca_profile_tool.py'), 'check') + $VendorPyArgs)
|
||||||
}
|
}
|
||||||
|
|
||||||
validate_system = {
|
validate_system = {
|
||||||
@@ -571,7 +576,7 @@ $CheckBodies = @{
|
|||||||
|
|
||||||
# Heading CI puts above this check's log in the PR comment.
|
# Heading CI puts above this check's log in the PR comment.
|
||||||
$CommentHeadings = @{
|
$CommentHeadings = @{
|
||||||
extra_json_check = '### Extra JSON Check Failed'
|
profile_tool = '### Profile Check Failed (orca_profile_tool.py)'
|
||||||
validate_system = '### System Profile Validation Failed'
|
validate_system = '### System Profile Validation Failed'
|
||||||
validate_slice = '### Slice Validation Failed (custom g-code expansion)'
|
validate_slice = '### Slice Validation Failed (custom g-code expansion)'
|
||||||
validate_filament_subtypes = '### Filament Subtype Validation Failed'
|
validate_filament_subtypes = '### Filament Subtype Validation Failed'
|
||||||
@@ -618,7 +623,7 @@ try {
|
|||||||
[Console]::OutputEncoding = New-Object Text.UTF8Encoding($false)
|
[Console]::OutputEncoding = New-Object Text.UTF8Encoding($false)
|
||||||
Push-UserPresets
|
Push-UserPresets
|
||||||
|
|
||||||
if ($Checks | Where-Object { $_ -ne 'extra_json_check' }) { $Validator = Resolve-Validator }
|
if ($Checks | Where-Object { $_ -ne 'profile_tool' }) { $Validator = Resolve-Validator }
|
||||||
|
|
||||||
# An empty printer set is a failure to the sweep, so validate_slice is recorded as skipped
|
# An empty printer set is a failure to the sweep, so validate_slice is recorded as skipped
|
||||||
# rather than run for a vendor that ships no printers (the filament-only OrcaFilamentLibrary);
|
# rather than run for a vendor that ships no printers (the filament-only OrcaFilamentLibrary);
|
||||||
@@ -673,7 +678,7 @@ try {
|
|||||||
''
|
''
|
||||||
}
|
}
|
||||||
'---'
|
'---'
|
||||||
'*Please fix the above errors and push a new commit.*'
|
'*Fix the errors above and push a new commit. To reproduce this run locally: `scripts/check_profile.sh`, or `scripts\check_profile.bat` on Windows.*'
|
||||||
)
|
)
|
||||||
$commentPath = Join-Path $WorkDir 'pr_comment.md'
|
$commentPath = Join-Path $WorkDir 'pr_comment.md'
|
||||||
[IO.File]::WriteAllLines($commentPath, [string[]] $comment)
|
[IO.File]::WriteAllLines($commentPath, [string[]] $comment)
|
||||||
|
|||||||
+17
-11
@@ -38,7 +38,7 @@ PROFILES_DIR="${REPO_ROOT}/resources/profiles"
|
|||||||
WORK_DIR="${REPO_ROOT}/.test/check_profiles"
|
WORK_DIR="${REPO_ROOT}/.test/check_profiles"
|
||||||
VALIDATOR="${ORCA_PROFILE_VALIDATOR:-}"
|
VALIDATOR="${ORCA_PROFILE_VALIDATOR:-}"
|
||||||
# Vendor to check, named after its <Vendor>.json - empty means every vendor, which is exactly what
|
# Vendor to check, named after its <Vendor>.json - empty means every vendor, which is exactly what
|
||||||
# both the validator's -v and orca_extra_profile_check.py's --vendor take an empty value to mean.
|
# both the validator's -v and orca_profile_tool.py check's --vendor take an empty value to mean.
|
||||||
# So the flag is passed unconditionally below rather than kept in an array bash 3.2 cannot expand
|
# So the flag is passed unconditionally below rather than kept in an array bash 3.2 cannot expand
|
||||||
# empty under `set -u`.
|
# empty under `set -u`.
|
||||||
VENDOR=""
|
VENDOR=""
|
||||||
@@ -46,7 +46,7 @@ LOG_LEVEL=2
|
|||||||
PREFER_DOWNLOAD=0
|
PREFER_DOWNLOAD=0
|
||||||
REFRESH=0
|
REFRESH=0
|
||||||
|
|
||||||
ALL_CHECKS=(extra_json_check validate_system validate_slice validate_filament_subtypes validate_custom)
|
ALL_CHECKS=(profile_tool validate_system validate_slice validate_filament_subtypes validate_custom)
|
||||||
CHECKS=()
|
CHECKS=()
|
||||||
# "<check><TAB>pass|fail" per check that ran, plus "<check><TAB>skip<TAB>why" for one a vendor
|
# "<check><TAB>pass|fail" per check that ran, plus "<check><TAB>skip<TAB>why" for one a vendor
|
||||||
# scope left out; a string rather than an array because bash 3.2 (still the /bin/bash on macOS)
|
# scope left out; a string rather than an array because bash 3.2 (still the /bin/bash on macOS)
|
||||||
@@ -60,7 +60,7 @@ Run the profile checks from .github/workflows/check_profiles.yml locally.
|
|||||||
Usage: scripts/check_profile.sh [OPTION]... [CHECK]...
|
Usage: scripts/check_profile.sh [OPTION]... [CHECK]...
|
||||||
|
|
||||||
Checks (default: all, in this order):
|
Checks (default: all, in this order):
|
||||||
extra_json_check scripts/orca_extra_profile_check.py
|
profile_tool scripts/orca_profile_tool.py check
|
||||||
validate_system validator -p <profiles> -l <level>
|
validate_system validator -p <profiles> -l <level>
|
||||||
validate_slice validator -p <profiles> -s -l <level>
|
validate_slice validator -p <profiles> -s -l <level>
|
||||||
validate_filament_subtypes validator -p <profiles> -l <level> -f
|
validate_filament_subtypes validator -p <profiles> -l <level> -f
|
||||||
@@ -79,14 +79,18 @@ Options:
|
|||||||
-l, --log-level N validator log level (default: ${LOG_LEVEL}, as in CI)
|
-l, --log-level N validator log level (default: ${LOG_LEVEL}, as in CI)
|
||||||
-h, --help show this help
|
-h, --help show this help
|
||||||
|
|
||||||
Note: extra_json_check always looks at the tree next to the script
|
Note: profile_tool is the only check that is not the validator binary; it makes the static
|
||||||
(<repo>/resources/profiles); --profiles only redirects the validator checks.
|
checks the validator cannot, because the validator loads the tree the way the slicer does
|
||||||
|
and so never sees a profile no <vendor>.json indexes, a preset name two files claim, or a
|
||||||
|
file normalize and update-index would still rewrite. It always looks at the tree next to
|
||||||
|
the script (<repo>/resources/profiles); --profiles only redirects the validator checks,
|
||||||
|
because validating another tree's ids needs that tree's own filament_id snapshot too.
|
||||||
|
|
||||||
Note: --vendor narrows validate_custom too, by keeping only that vendor's presets in each
|
Note: --vendor narrows validate_custom too, by keeping only that vendor's presets in each
|
||||||
fixture tree. The one check it cannot narrow is validate_slice for a vendor that ships no
|
fixture tree. The one check it cannot narrow is validate_slice for a vendor that ships no
|
||||||
printers; the summary reports that one as skipped, and naming it explicitly still runs it.
|
printers; the summary reports that one as skipped, and naming it explicitly still runs it.
|
||||||
extra_json_check keeps its two cross-vendor checks (setting_id and filament_id) tree-wide,
|
profile_tool keeps its two cross-vendor checks (setting_id and filament_id) tree-wide, so a
|
||||||
so a scoped run can still fail on another vendor's files.
|
scoped run can still fail on another vendor's files.
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -361,8 +365,8 @@ resolve_validator() {
|
|||||||
|
|
||||||
# ---------------------------------------------------------------------------- checks
|
# ---------------------------------------------------------------------------- checks
|
||||||
|
|
||||||
check_extra_json_check() {
|
check_profile_tool() {
|
||||||
python3 "${REPO_ROOT}/scripts/orca_extra_profile_check.py" --vendor "${VENDOR}"
|
python3 "${REPO_ROOT}/scripts/orca_profile_tool.py" check --vendor "${VENDOR}"
|
||||||
}
|
}
|
||||||
|
|
||||||
check_validate_system() {
|
check_validate_system() {
|
||||||
@@ -548,7 +552,7 @@ EOF
|
|||||||
# Heading CI puts above this check's log in the PR comment.
|
# Heading CI puts above this check's log in the PR comment.
|
||||||
comment_heading() {
|
comment_heading() {
|
||||||
case "$1" in
|
case "$1" in
|
||||||
extra_json_check) echo "### Extra JSON Check Failed" ;;
|
profile_tool) echo "### Profile Check Failed (orca_profile_tool.py)" ;;
|
||||||
validate_system) echo "### System Profile Validation Failed" ;;
|
validate_system) echo "### System Profile Validation Failed" ;;
|
||||||
validate_slice) echo "### Slice Validation Failed (custom g-code expansion)" ;;
|
validate_slice) echo "### Slice Validation Failed (custom g-code expansion)" ;;
|
||||||
validate_filament_subtypes) echo "### Filament Subtype Validation Failed" ;;
|
validate_filament_subtypes) echo "### Filament Subtype Validation Failed" ;;
|
||||||
@@ -638,7 +642,9 @@ fi
|
|||||||
${RESULTS}
|
${RESULTS}
|
||||||
INNER
|
INNER
|
||||||
echo "---"
|
echo "---"
|
||||||
echo "*Please fix the above errors and push a new commit.*"
|
# Single-quoted on purpose: the backticks below are markdown, not command substitution.
|
||||||
|
# shellcheck disable=SC2016
|
||||||
|
echo '*Fix the errors above and push a new commit. To reproduce this run locally: `scripts/check_profile.sh`, or `scripts\check_profile.bat` on Windows.*'
|
||||||
} > "${WORK_DIR}/pr_comment.md"
|
} > "${WORK_DIR}/pr_comment.md"
|
||||||
|
|
||||||
printf '\n%sOne or more profile checks failed.%s Logs: %s\n' "${C_RED}" "${C_RESET}" "${LOG_DIR}"
|
printf '\n%sOne or more profile checks failed.%s Logs: %s\n' "${C_RED}" "${C_RESET}" "${LOG_DIR}"
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user