mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-22 19:50:44 +00:00
Compare commits
24 Commits
ci/publish
...
v2.4.0-bet
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fc9a8aa93f | ||
|
|
445bcdfa00 | ||
|
|
ff51abc69b | ||
|
|
21f48a2654 | ||
|
|
548f291a81 | ||
|
|
f3a5c169c9 | ||
|
|
bd41eebba9 | ||
|
|
1e1d9cbaf8 | ||
|
|
0d586b28c4 | ||
|
|
8cc56a9e2a | ||
|
|
8a64a5dd55 | ||
|
|
a1897873ab | ||
|
|
b676fd32b2 | ||
|
|
d1c9eb4826 | ||
|
|
2f2ebfaf6e | ||
|
|
765b3eaf1c | ||
|
|
8f65486e69 | ||
|
|
d8877e721b | ||
|
|
bc3af3d00f | ||
|
|
269eb81028 | ||
|
|
08d4ae7dbd | ||
|
|
b1411e253f | ||
|
|
42cce5399c | ||
|
|
b17f5e3946 |
127
.github/workflows/publish_release.yml
vendored
Normal file
127
.github/workflows/publish_release.yml
vendored
Normal file
@@ -0,0 +1,127 @@
|
|||||||
|
name: Publish to draft release
|
||||||
|
|
||||||
|
# Manually pulls the platform binaries produced by a "Build all" run and uploads
|
||||||
|
# them to an existing DRAFT release. Decoupled from the build so you can test a
|
||||||
|
# build first, then publish exactly that run's artifacts once you're happy.
|
||||||
|
#
|
||||||
|
# Trigger: Actions tab -> "Publish to draft release" -> Run workflow.
|
||||||
|
# Locked to a single person: the first step aborts unless the actor matches the
|
||||||
|
# `RELEASE_PUBLISHER` repo variable (set to "SoftFever"). To allow someone else,
|
||||||
|
# change that variable: gh variable set RELEASE_PUBLISHER --body "<login>".
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
run_id:
|
||||||
|
description: 'Run ID of the "Build all" workflow to pull binaries from (the number in the Actions run URL)'
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
tag:
|
||||||
|
description: 'Tag of the draft release to upload to (e.g. v2.4.0-beta)'
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write # upload release assets
|
||||||
|
actions: read # download artifacts from another run
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish:
|
||||||
|
name: Publish binaries to draft release
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
RUN_ID: ${{ inputs.run_id }}
|
||||||
|
TAG: ${{ inputs.tag }}
|
||||||
|
steps:
|
||||||
|
- name: Restrict to the release publisher
|
||||||
|
env:
|
||||||
|
PUBLISHER: ${{ vars.RELEASE_PUBLISHER }}
|
||||||
|
run: |
|
||||||
|
if [ -z "$PUBLISHER" ]; then
|
||||||
|
echo "::error::RELEASE_PUBLISHER repo variable is not set."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if [ "${{ github.actor }}" != "$PUBLISHER" ]; then
|
||||||
|
echo "::error::Only @$PUBLISHER may run this workflow (you are @${{ github.actor }})."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "Authorized: @${{ github.actor }}"
|
||||||
|
|
||||||
|
- name: Verify target is a draft release
|
||||||
|
run: |
|
||||||
|
if ! gh release view "$TAG" --repo "$GITHUB_REPOSITORY" --json isDraft >/dev/null 2>&1; then
|
||||||
|
echo "::error::Release '$TAG' not found. Create the draft (with this tag) first."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
is_draft=$(gh release view "$TAG" --repo "$GITHUB_REPOSITORY" --json isDraft --jq '.isDraft')
|
||||||
|
if [ "$is_draft" != "true" ]; then
|
||||||
|
echo "::error::Release '$TAG' is published, not a draft. Aborting to avoid touching a live release."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Verify source build run
|
||||||
|
run: |
|
||||||
|
info=$(gh run view "$RUN_ID" --repo "$GITHUB_REPOSITORY" --json workflowName,conclusion,headBranch)
|
||||||
|
name=$(echo "$info" | jq -r '.workflowName')
|
||||||
|
conclusion=$(echo "$info" | jq -r '.conclusion')
|
||||||
|
branch=$(echo "$info" | jq -r '.headBranch')
|
||||||
|
echo "Source run #$RUN_ID: '$name' on '$branch' (conclusion: $conclusion)"
|
||||||
|
if [ "$conclusion" != "success" ]; then
|
||||||
|
echo "::warning::Source run did not conclude 'success' ($conclusion). Some assets may be missing."
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Download release artifacts from build run
|
||||||
|
run: |
|
||||||
|
gh run download "$RUN_ID" --repo "$GITHUB_REPOSITORY" --dir artifacts \
|
||||||
|
-p 'OrcaSlicer_Windows_*' \
|
||||||
|
-p 'OrcaSlicer_Mac_universal_*' \
|
||||||
|
-p 'OrcaSlicer_Linux_ubuntu_*' \
|
||||||
|
-p 'OrcaSlicer-Linux-flatpak_*' \
|
||||||
|
-p 'PDB'
|
||||||
|
echo "Downloaded artifact folders:"
|
||||||
|
ls -1 artifacts
|
||||||
|
|
||||||
|
- name: Assemble release assets
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
mkdir -p upload
|
||||||
|
|
||||||
|
# gh run download auto-extracts each artifact into a folder, so the inner
|
||||||
|
# binaries are already unzipped. Copy the inner binary for each platform.
|
||||||
|
# -type f is required (some artifact *folders* are named "*.flatpak").
|
||||||
|
|
||||||
|
# Windows installer: the .exe inside the installer artifact, NOT the
|
||||||
|
# orca-slicer.exe that lives in the portable app folder.
|
||||||
|
find artifacts -type f -name '*.exe' -path '*OrcaSlicer_Windows_*' ! -path '*_portable*' -exec cp -v {} upload/ \;
|
||||||
|
# macOS universal DMG (profile-validator DMG isn't downloaded).
|
||||||
|
find artifacts -type f -name '*.dmg' -path '*OrcaSlicer_Mac_universal_*' -exec cp -v {} upload/ \;
|
||||||
|
# Linux AppImage.
|
||||||
|
find artifacts -type f -name '*.AppImage' -exec cp -v {} upload/ \;
|
||||||
|
# Flatpak bundles (x86_64 + aarch64).
|
||||||
|
find artifacts -type f -name '*.flatpak' -exec cp -v {} upload/ \;
|
||||||
|
# Windows debug symbols (PDB archive, for developers).
|
||||||
|
find artifacts -type f -name 'Debug_PDB_*.7z' -exec cp -v {} upload/ \;
|
||||||
|
|
||||||
|
# Portable Windows build is an unzipped folder artifact; re-zip it to the
|
||||||
|
# released filename (this one stays a .zip on the release).
|
||||||
|
portable_dir=$(find artifacts -maxdepth 1 -type d -name 'OrcaSlicer_Windows_*_portable' | head -n1)
|
||||||
|
if [ -n "${portable_dir:-}" ]; then
|
||||||
|
( cd "$portable_dir" && zip -qr "$GITHUB_WORKSPACE/upload/$(basename "$portable_dir").zip" . )
|
||||||
|
echo "Zipped portable -> $(basename "$portable_dir").zip"
|
||||||
|
else
|
||||||
|
echo "::warning::Windows portable artifact not found."
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Assets to upload:"
|
||||||
|
ls -lh upload
|
||||||
|
if [ -z "$(ls -A upload)" ]; then
|
||||||
|
echo "::error::No assets assembled. Check the run_id and that its artifacts haven't expired."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Upload assets to draft release
|
||||||
|
run: |
|
||||||
|
gh release upload "$TAG" upload/* --repo "$GITHUB_REPOSITORY" --clobber
|
||||||
|
echo "Uploaded to draft release: $TAG"
|
||||||
|
gh release view "$TAG" --repo "$GITHUB_REPOSITORY" --json assets --jq '.assets[].name'
|
||||||
@@ -220,7 +220,9 @@ if (MSVC)
|
|||||||
# /bigobj (Increase Number of Sections in .Obj file)
|
# /bigobj (Increase Number of Sections in .Obj file)
|
||||||
# error C3859: virtual memory range for PCH exceeded; please recompile with a command line option of '-Zm90' or greater
|
# error C3859: virtual memory range for PCH exceeded; please recompile with a command line option of '-Zm90' or greater
|
||||||
# Generate symbols at every build target, even for the release.
|
# Generate symbols at every build target, even for the release.
|
||||||
add_compile_options(-bigobj -Zm520 /Zi)
|
# -Zm520 fixes error C3859 but forces the compiler to pre-allocate that memory for every translation unit regardless
|
||||||
|
# combining /Zi with /FS frees up a significant amount of memory pressure across all parallel compile jobs and makes /MP faster overall.
|
||||||
|
add_compile_options(-bigobj /Zi /FS)
|
||||||
# Disable STL4007: Many result_type typedefs and all argument_type, first_argument_type, and second_argument_type typedefs are deprecated in C++17.
|
# Disable STL4007: Many result_type typedefs and all argument_type, first_argument_type, and second_argument_type typedefs are deprecated in C++17.
|
||||||
#FIXME Remove this line after eigen library adapts to the new C++17 adaptor rules.
|
#FIXME Remove this line after eigen library adapts to the new C++17 adaptor rules.
|
||||||
add_compile_options(-D_SILENCE_CXX17_ADAPTOR_TYPEDEFS_DEPRECATION_WARNING)
|
add_compile_options(-D_SILENCE_CXX17_ADAPTOR_TYPEDEFS_DEPRECATION_WARNING)
|
||||||
@@ -231,6 +233,11 @@ if (MSVC)
|
|||||||
# Disable warnings on comparison of unsigned and signed
|
# Disable warnings on comparison of unsigned and signed
|
||||||
# C4018: signed/unsigned mismatch
|
# C4018: signed/unsigned mismatch
|
||||||
add_compile_options(/wd4018)
|
add_compile_options(/wd4018)
|
||||||
|
# Prevent linker restart when TBB (or other deps) built with /GL are linked
|
||||||
|
# Make your full (clean) build slower because it enables link-time code generation across all translation units.
|
||||||
|
# helps incremental builds by preventing the double-link restart from TBB
|
||||||
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /LTCG")
|
||||||
|
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} /LTCG")
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
if (${CMAKE_CXX_COMPILER_ID} STREQUAL "AppleClang" AND ${CMAKE_CXX_COMPILER_VERSION} VERSION_GREATER 15)
|
if (${CMAKE_CXX_COMPILER_ID} STREQUAL "AppleClang" AND ${CMAKE_CXX_COMPILER_VERSION} VERSION_GREATER 15)
|
||||||
|
|||||||
10
resources/images/param_junction_deviation.svg
Normal file
10
resources/images/param_junction_deviation.svg
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18">
|
||||||
|
<line x1="0.5" y1="4.5" x2="7.5" y2="4.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/>
|
||||||
|
<line x1="15.5" y1="4.5" x2="16.5" y2="4.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/>
|
||||||
|
<rect x="7.5" y="0.5" width="8" height="13" rx="1" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/>
|
||||||
|
<circle cx="11.5" cy="7.5" r="2" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/>
|
||||||
|
<polyline points="9.5 13.5 11.5 16.5 13.5 13.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/>
|
||||||
|
|
||||||
|
<path d="M1.5 6.2 L1.5 11.6 C1.5 14.0 3.0 15.5 5.4 15.5 L8.2 15.5"
|
||||||
|
style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 867 B |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "Bambulab",
|
"name": "Bambulab",
|
||||||
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
||||||
"version": "02.01.00.15",
|
"version": "02.01.00.16",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "BBL configurations",
|
"description": "BBL configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|||||||
@@ -145,6 +145,7 @@
|
|||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
"support_chamber_temp_control": "1",
|
"support_chamber_temp_control": "1",
|
||||||
|
"support_air_filtration": "1",
|
||||||
"upward_compatible_machine": [
|
"upward_compatible_machine": [
|
||||||
"Bambu Lab A1 0.4 nozzle",
|
"Bambu Lab A1 0.4 nozzle",
|
||||||
"Bambu Lab P2S 0.4 nozzle",
|
"Bambu Lab P2S 0.4 nozzle",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "M3D",
|
"name": "M3D",
|
||||||
"version": "02.04.00.00",
|
"version": "02.04.00.01",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Configuration for M3D printers",
|
"description": "Configuration for M3D printers",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|||||||
@@ -40,6 +40,5 @@
|
|||||||
"support_type": "normal(manual)",
|
"support_type": "normal(manual)",
|
||||||
"travel_speed": "100",
|
"travel_speed": "100",
|
||||||
"wall_loops": "2",
|
"wall_loops": "2",
|
||||||
"wipe_tower_extra_spacing": "200%",
|
"wipe_tower_extra_spacing": "200%"
|
||||||
"wipe_tower_filament": "2"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -41,6 +41,5 @@
|
|||||||
"top_surface_speed": "40",
|
"top_surface_speed": "40",
|
||||||
"travel_speed": "100",
|
"travel_speed": "100",
|
||||||
"wall_loops": "2",
|
"wall_loops": "2",
|
||||||
"wipe_tower_extra_spacing": "200%",
|
"wipe_tower_extra_spacing": "200%"
|
||||||
"wipe_tower_filament": "2"
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,6 +25,5 @@
|
|||||||
"top_surface_speed": "40",
|
"top_surface_speed": "40",
|
||||||
"travel_speed": "100",
|
"travel_speed": "100",
|
||||||
"wall_loops": "2",
|
"wall_loops": "2",
|
||||||
"wipe_tower_extra_spacing": "200%",
|
"wipe_tower_extra_spacing": "200%"
|
||||||
"wipe_tower_filament": "2"
|
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -261,5 +261,17 @@
|
|||||||
],
|
],
|
||||||
"keep_fan_always_on": [
|
"keep_fan_always_on": [
|
||||||
"0"
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0.3"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"35"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
64
resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_4mm.json
Normal file
64
resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_4mm.json
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFB00104"
|
||||||
|
}
|
||||||
64
resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_5mm.json
Normal file
64
resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_5mm.json
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFB00105"
|
||||||
|
}
|
||||||
64
resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_7mm.json
Normal file
64
resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_7mm.json
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFB00107"
|
||||||
|
}
|
||||||
64
resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_1_0mm.json
Normal file
64
resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_1_0mm.json
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFB00110"
|
||||||
|
}
|
||||||
@@ -264,5 +264,17 @@
|
|||||||
],
|
],
|
||||||
"keep_fan_always_on": [
|
"keep_fan_always_on": [
|
||||||
"0"
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0.3"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"30"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFN00104"
|
||||||
|
}
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFN00105"
|
||||||
|
}
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFN00107"
|
||||||
|
}
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFN00110"
|
||||||
|
}
|
||||||
@@ -261,5 +261,17 @@
|
|||||||
],
|
],
|
||||||
"keep_fan_always_on": [
|
"keep_fan_always_on": [
|
||||||
"0"
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0.3"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"30"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -261,5 +261,17 @@
|
|||||||
],
|
],
|
||||||
"keep_fan_always_on": [
|
"keep_fan_always_on": [
|
||||||
"1"
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0.3"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"30"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFG00104"
|
||||||
|
}
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFG00105"
|
||||||
|
}
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFG00107"
|
||||||
|
}
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFG00110"
|
||||||
|
}
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFG00204"
|
||||||
|
}
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFG00205"
|
||||||
|
}
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFG00207"
|
||||||
|
}
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFG00210"
|
||||||
|
}
|
||||||
@@ -443,5 +443,17 @@
|
|||||||
"volumetric_speed_coefficients": [
|
"volumetric_speed_coefficients": [
|
||||||
""
|
""
|
||||||
],
|
],
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations",
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0.3"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"35"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
64
resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_4mm.json
Normal file
64
resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_4mm.json
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFL00104"
|
||||||
|
}
|
||||||
64
resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_5mm.json
Normal file
64
resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_5mm.json
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFL00105"
|
||||||
|
}
|
||||||
64
resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_7mm.json
Normal file
64
resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_7mm.json
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFL00107"
|
||||||
|
}
|
||||||
64
resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_1_0mm.json
Normal file
64
resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_1_0mm.json
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFL00110"
|
||||||
|
}
|
||||||
@@ -141,13 +141,13 @@
|
|||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
"20"
|
"6"
|
||||||
],
|
],
|
||||||
"filament_retraction_speed": [
|
"filament_retraction_speed": [
|
||||||
"120"
|
"30"
|
||||||
],
|
],
|
||||||
"filament_deretraction_speed": [
|
"filament_deretraction_speed": [
|
||||||
"120"
|
"25"
|
||||||
],
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
"filament_retraction_minimum_travel": [
|
||||||
"15"
|
"15"
|
||||||
@@ -162,7 +162,7 @@
|
|||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_z_hop": [
|
"filament_z_hop": [
|
||||||
"0"
|
"0.3"
|
||||||
],
|
],
|
||||||
"filament_z_hop_types": [
|
"filament_z_hop_types": [
|
||||||
"Normal Lift"
|
"Normal Lift"
|
||||||
|
|||||||
50
resources/profiles/SeeMeCNC/filament/SeeMeCNC_TPU_0_7mm.json
Normal file
50
resources/profiles/SeeMeCNC/filament/SeeMeCNC_TPU_0_7mm.json
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"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"
|
||||||
|
],
|
||||||
|
"filament_id": "SMCFU00107"
|
||||||
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC Artemis 300",
|
"model": "SeeMeCNC Artemis 300",
|
||||||
"thumbnail": "SeeMeCNC Artemis 300_cover.png",
|
"thumbnail": "SeeMeCNC Artemis 300_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC Artemis 300",
|
"model": "SeeMeCNC Artemis 300",
|
||||||
"thumbnail": "SeeMeCNC Artemis 300_cover.png",
|
"thumbnail": "SeeMeCNC Artemis 300_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC Artemis 300",
|
"model": "SeeMeCNC Artemis 300",
|
||||||
"thumbnail": "SeeMeCNC Artemis 300_cover.png",
|
"thumbnail": "SeeMeCNC Artemis 300_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC Artemis 300",
|
"model": "SeeMeCNC Artemis 300",
|
||||||
"thumbnail": "SeeMeCNC Artemis 300_cover.png",
|
"thumbnail": "SeeMeCNC Artemis 300_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC BOSSdelta 500 0505",
|
"model": "SeeMeCNC BOSSdelta 500 0505",
|
||||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0505_cover.png",
|
"thumbnail": "SeeMeCNC BOSSdelta 500 0505_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC BOSSdelta 500 0505",
|
"model": "SeeMeCNC BOSSdelta 500 0505",
|
||||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0505_cover.png",
|
"thumbnail": "SeeMeCNC BOSSdelta 500 0505_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC BOSSdelta 500 0505",
|
"model": "SeeMeCNC BOSSdelta 500 0505",
|
||||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0505_cover.png",
|
"thumbnail": "SeeMeCNC BOSSdelta 500 0505_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC BOSSdelta 500 0505",
|
"model": "SeeMeCNC BOSSdelta 500 0505",
|
||||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0505_cover.png",
|
"thumbnail": "SeeMeCNC BOSSdelta 500 0505_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC BOSSdelta 500 0510",
|
"model": "SeeMeCNC BOSSdelta 500 0510",
|
||||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0510_cover.png",
|
"thumbnail": "SeeMeCNC BOSSdelta 500 0510_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC BOSSdelta 500 0510",
|
"model": "SeeMeCNC BOSSdelta 500 0510",
|
||||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0510_cover.png",
|
"thumbnail": "SeeMeCNC BOSSdelta 500 0510_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC BOSSdelta 500 0510",
|
"model": "SeeMeCNC BOSSdelta 500 0510",
|
||||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0510_cover.png",
|
"thumbnail": "SeeMeCNC BOSSdelta 500 0510_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC BOSSdelta 500 0510",
|
"model": "SeeMeCNC BOSSdelta 500 0510",
|
||||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0510_cover.png",
|
"thumbnail": "SeeMeCNC BOSSdelta 500 0510_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC BOSSdelta 500 0521",
|
"model": "SeeMeCNC BOSSdelta 500 0521",
|
||||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0521_cover.png",
|
"thumbnail": "SeeMeCNC BOSSdelta 500 0521_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC BOSSdelta 500 0521",
|
"model": "SeeMeCNC BOSSdelta 500 0521",
|
||||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0521_cover.png",
|
"thumbnail": "SeeMeCNC BOSSdelta 500 0521_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC BOSSdelta 500 0521",
|
"model": "SeeMeCNC BOSSdelta 500 0521",
|
||||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0521_cover.png",
|
"thumbnail": "SeeMeCNC BOSSdelta 500 0521_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC BOSSdelta 500 0521",
|
"model": "SeeMeCNC BOSSdelta 500 0521",
|
||||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0521_cover.png",
|
"thumbnail": "SeeMeCNC BOSSdelta 500 0521_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC BOSSdelta 300",
|
"model": "SeeMeCNC BOSSdelta 300",
|
||||||
"thumbnail": "SeeMeCNC BOSSdelta 300_cover.png",
|
"thumbnail": "SeeMeCNC BOSSdelta 300_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC BOSSdelta 300",
|
"model": "SeeMeCNC BOSSdelta 300",
|
||||||
"thumbnail": "SeeMeCNC BOSSdelta 300_cover.png",
|
"thumbnail": "SeeMeCNC BOSSdelta 300_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC BOSSdelta 300",
|
"model": "SeeMeCNC BOSSdelta 300",
|
||||||
"thumbnail": "SeeMeCNC BOSSdelta 300_cover.png",
|
"thumbnail": "SeeMeCNC BOSSdelta 300_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC BOSSdelta 300",
|
"model": "SeeMeCNC BOSSdelta 300",
|
||||||
"thumbnail": "SeeMeCNC BOSSdelta 300_cover.png",
|
"thumbnail": "SeeMeCNC BOSSdelta 300_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC RostockMAX v3.2",
|
"model": "SeeMeCNC RostockMAX v3.2",
|
||||||
"thumbnail": "SeeMeCNC RostockMAX v3.2_cover.png",
|
"thumbnail": "SeeMeCNC RostockMAX v3.2_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC RostockMAX v3.2",
|
"model": "SeeMeCNC RostockMAX v3.2",
|
||||||
"thumbnail": "SeeMeCNC RostockMAX v3.2_cover.png",
|
"thumbnail": "SeeMeCNC RostockMAX v3.2_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC RostockMAX v3.2",
|
"model": "SeeMeCNC RostockMAX v3.2",
|
||||||
"thumbnail": "SeeMeCNC RostockMAX v3.2_cover.png",
|
"thumbnail": "SeeMeCNC RostockMAX v3.2_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC RostockMAX v3.2",
|
"model": "SeeMeCNC RostockMAX v3.2",
|
||||||
"thumbnail": "SeeMeCNC RostockMAX v3.2_cover.png",
|
"thumbnail": "SeeMeCNC RostockMAX v3.2_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC RostockMAX v4",
|
"model": "SeeMeCNC RostockMAX v4",
|
||||||
"thumbnail": "SeeMeCNC RostockMAX v4_cover.png",
|
"thumbnail": "SeeMeCNC RostockMAX v4_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC RostockMAX v4",
|
"model": "SeeMeCNC RostockMAX v4",
|
||||||
"thumbnail": "SeeMeCNC RostockMAX v4_cover.png",
|
"thumbnail": "SeeMeCNC RostockMAX v4_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC RostockMAX v4",
|
"model": "SeeMeCNC RostockMAX v4",
|
||||||
"thumbnail": "SeeMeCNC RostockMAX v4_cover.png",
|
"thumbnail": "SeeMeCNC RostockMAX v4_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -348,4 +348,4 @@
|
|||||||
"model": "SeeMeCNC RostockMAX v4",
|
"model": "SeeMeCNC RostockMAX v4",
|
||||||
"thumbnail": "SeeMeCNC RostockMAX v4_cover.png",
|
"thumbnail": "SeeMeCNC RostockMAX v4_cover.png",
|
||||||
"description": "SeeMeCNC configurations"
|
"description": "SeeMeCNC configurations"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.16mm Fine @SeeMeCNC Artemis 0.4",
|
"name": "0.16mm Fine @SeeMeCNC Artemis 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.16mm Fine @SeeMeCNC Artemis 0.4",
|
"print_settings_id": "0.16mm Fine @SeeMeCNC Artemis 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC Artemis 0.4 nozzle"
|
"SeeMeCNC Artemis 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.16",
|
"layer_height": "0.16",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
|
"name": "0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
|
"print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 300 0.4 nozzle"
|
"SeeMeCNC BOSSdelta 300 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.16",
|
"layer_height": "0.16",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
|
"name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
|
"print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
|
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.16",
|
"layer_height": "0.16",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
|
"name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
|
"print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
|
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.16",
|
"layer_height": "0.16",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
|
"name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
|
"print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
|
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.16",
|
"layer_height": "0.16",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
|
"name": "0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
|
"print_settings_id": "0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC RostockMAX v3.2 0.4 nozzle"
|
"SeeMeCNC RostockMAX v3.2 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.16",
|
"layer_height": "0.16",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
|
"name": "0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
|
"print_settings_id": "0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC RostockMAX v4 0.4 nozzle"
|
"SeeMeCNC RostockMAX v4 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.16",
|
"layer_height": "0.16",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
"name": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
"print_settings_id": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC RostockMAX v3.2 0.4 nozzle"
|
"SeeMeCNC RostockMAX v3.2 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.20mm Fine @SeeMeCNC Artemis 0.5",
|
"name": "0.20mm Fine @SeeMeCNC Artemis 0.5",
|
||||||
"inherits": "SeeMeCNC process base 0.5mm",
|
"inherits": "SeeMeCNC process base 0.5mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.20mm Fine @SeeMeCNC Artemis 0.5",
|
"print_settings_id": "0.20mm Fine @SeeMeCNC Artemis 0.5",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC Artemis 0.5 nozzle"
|
"SeeMeCNC Artemis 0.5 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.25",
|
"initial_layer_print_height": "0.25",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
|
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
|
||||||
"inherits": "SeeMeCNC process base 0.5mm",
|
"inherits": "SeeMeCNC process base 0.5mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
|
"print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 300 0.5 nozzle"
|
"SeeMeCNC BOSSdelta 300 0.5 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.25",
|
"initial_layer_print_height": "0.25",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
|
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
|
||||||
"inherits": "SeeMeCNC process base 0.5mm",
|
"inherits": "SeeMeCNC process base 0.5mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
|
"print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.5 nozzle"
|
"SeeMeCNC BOSSdelta 500 0505 0.5 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.25",
|
"initial_layer_print_height": "0.25",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
|
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
|
||||||
"inherits": "SeeMeCNC process base 0.5mm",
|
"inherits": "SeeMeCNC process base 0.5mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
|
"print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.5 nozzle"
|
"SeeMeCNC BOSSdelta 500 0510 0.5 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.25",
|
"initial_layer_print_height": "0.25",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
|
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
|
||||||
"inherits": "SeeMeCNC process base 0.5mm",
|
"inherits": "SeeMeCNC process base 0.5mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
|
"print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.5 nozzle"
|
"SeeMeCNC BOSSdelta 500 0521 0.5 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.25",
|
"initial_layer_print_height": "0.25",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
|
"name": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
|
||||||
"inherits": "SeeMeCNC process base 0.5mm",
|
"inherits": "SeeMeCNC process base 0.5mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
|
"print_settings_id": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC RostockMAX v3.2 0.5 nozzle"
|
"SeeMeCNC RostockMAX v3.2 0.5 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.25",
|
"initial_layer_print_height": "0.25",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
|
"name": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
|
||||||
"inherits": "SeeMeCNC process base 0.5mm",
|
"inherits": "SeeMeCNC process base 0.5mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
|
"print_settings_id": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC RostockMAX v4 0.5 nozzle"
|
"SeeMeCNC RostockMAX v4 0.5 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.25",
|
"initial_layer_print_height": "0.25",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.20mm Standard @SeeMeCNC Artemis 0.4",
|
"name": "0.20mm Standard @SeeMeCNC Artemis 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.20mm Standard @SeeMeCNC Artemis 0.4",
|
"print_settings_id": "0.20mm Standard @SeeMeCNC Artemis 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC Artemis 0.4 nozzle"
|
"SeeMeCNC Artemis 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
|
"name": "0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
|
"print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 300 0.4 nozzle"
|
"SeeMeCNC BOSSdelta 300 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
|
"name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
|
"print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
|
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
|
"name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
|
"print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
|
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
|
"name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
|
"print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
|
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
|
"name": "0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
|
"print_settings_id": "0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC RostockMAX v3.2 0.4 nozzle"
|
"SeeMeCNC RostockMAX v3.2 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
|
"name": "0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
|
"print_settings_id": "0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC RostockMAX v4 0.4 nozzle"
|
"SeeMeCNC RostockMAX v4 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.2",
|
"layer_height": "0.2",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.24mm Draft @SeeMeCNC Artemis 0.4",
|
"name": "0.24mm Draft @SeeMeCNC Artemis 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.24mm Draft @SeeMeCNC Artemis 0.4",
|
"print_settings_id": "0.24mm Draft @SeeMeCNC Artemis 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC Artemis 0.4 nozzle"
|
"SeeMeCNC Artemis 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.24",
|
"layer_height": "0.24",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
|
"name": "0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
|
"print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 300 0.4 nozzle"
|
"SeeMeCNC BOSSdelta 300 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.24",
|
"layer_height": "0.24",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
|
"name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
|
"print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
|
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.24",
|
"layer_height": "0.24",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
|
"name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
|
"print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
|
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.24",
|
"layer_height": "0.24",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
|
"name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
|
"print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
|
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.24",
|
"layer_height": "0.24",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
"name": "0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
"print_settings_id": "0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC RostockMAX v3.2 0.4 nozzle"
|
"SeeMeCNC RostockMAX v3.2 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.24",
|
"layer_height": "0.24",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
|
"name": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
|
||||||
"inherits": "SeeMeCNC process base 0.4mm",
|
"inherits": "SeeMeCNC process base 0.4mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
|
"print_settings_id": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC RostockMAX v4 0.4 nozzle"
|
"SeeMeCNC RostockMAX v4 0.4 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.2",
|
"initial_layer_print_height": "0.2",
|
||||||
"layer_height": "0.24",
|
"layer_height": "0.24",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.25mm Standard @SeeMeCNC Artemis 0.5",
|
"name": "0.25mm Standard @SeeMeCNC Artemis 0.5",
|
||||||
"inherits": "SeeMeCNC process base 0.5mm",
|
"inherits": "SeeMeCNC process base 0.5mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.25mm Standard @SeeMeCNC Artemis 0.5",
|
"print_settings_id": "0.25mm Standard @SeeMeCNC Artemis 0.5",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC Artemis 0.5 nozzle"
|
"SeeMeCNC Artemis 0.5 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.25",
|
"initial_layer_print_height": "0.25",
|
||||||
"layer_height": "0.25",
|
"layer_height": "0.25",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
|
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
|
||||||
"inherits": "SeeMeCNC process base 0.5mm",
|
"inherits": "SeeMeCNC process base 0.5mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
|
"print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 300 0.5 nozzle"
|
"SeeMeCNC BOSSdelta 300 0.5 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.25",
|
"initial_layer_print_height": "0.25",
|
||||||
"layer_height": "0.25",
|
"layer_height": "0.25",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
|
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
|
||||||
"inherits": "SeeMeCNC process base 0.5mm",
|
"inherits": "SeeMeCNC process base 0.5mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
|
"print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 500 0505 0.5 nozzle"
|
"SeeMeCNC BOSSdelta 500 0505 0.5 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.25",
|
"initial_layer_print_height": "0.25",
|
||||||
"layer_height": "0.25",
|
"layer_height": "0.25",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
|
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
|
||||||
"inherits": "SeeMeCNC process base 0.5mm",
|
"inherits": "SeeMeCNC process base 0.5mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
|
"print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 500 0510 0.5 nozzle"
|
"SeeMeCNC BOSSdelta 500 0510 0.5 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.25",
|
"initial_layer_print_height": "0.25",
|
||||||
"layer_height": "0.25",
|
"layer_height": "0.25",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
|
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
|
||||||
"inherits": "SeeMeCNC process base 0.5mm",
|
"inherits": "SeeMeCNC process base 0.5mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
|
"print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC BOSSdelta 500 0521 0.5 nozzle"
|
"SeeMeCNC BOSSdelta 500 0521 0.5 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.25",
|
"initial_layer_print_height": "0.25",
|
||||||
"layer_height": "0.25",
|
"layer_height": "0.25",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"type": "process",
|
"type": "process",
|
||||||
"name": "0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
|
"name": "0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
|
||||||
"inherits": "SeeMeCNC process base 0.5mm",
|
"inherits": "SeeMeCNC process base 0.5mm",
|
||||||
"from": "System",
|
"from": "System",
|
||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"print_settings_id": "0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
|
"print_settings_id": "0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"SeeMeCNC RostockMAX v3.2 0.5 nozzle"
|
"SeeMeCNC RostockMAX v3.2 0.5 nozzle"
|
||||||
],
|
],
|
||||||
"compatible_printers_condition": "",
|
"compatible_printers_condition": "",
|
||||||
"alternate_extra_wall": "0",
|
"alternate_extra_wall": "0",
|
||||||
"counterbore_hole_bridging": "none",
|
"counterbore_hole_bridging": "none",
|
||||||
"initial_layer_print_height": "0.25",
|
"initial_layer_print_height": "0.25",
|
||||||
"layer_height": "0.25",
|
"layer_height": "0.25",
|
||||||
"precise_z_height": "0",
|
"precise_z_height": "0",
|
||||||
"skirt_distance": "2",
|
"skirt_distance": "2",
|
||||||
"skirt_loops": "0",
|
"skirt_loops": "0",
|
||||||
"spiral_mode": "0"
|
"spiral_mode": "0"
|
||||||
}
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user