mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-09 11:53:50 +03:00
Compare commits
16 Commits
ci/publish
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c1f3125f75 | ||
|
|
445bcdfa00 | ||
|
|
ff51abc69b | ||
|
|
f3a5c169c9 | ||
|
|
bd41eebba9 | ||
|
|
1e1d9cbaf8 | ||
|
|
0d586b28c4 | ||
|
|
8cc56a9e2a | ||
|
|
8a64a5dd55 | ||
|
|
a1897873ab | ||
|
|
b676fd32b2 | ||
|
|
d1c9eb4826 | ||
|
|
2f2ebfaf6e | ||
|
|
765b3eaf1c | ||
|
|
8f65486e69 | ||
|
|
d8877e721b |
5
.github/workflows/publish_release.yml
vendored
5
.github/workflows/publish_release.yml
vendored
@@ -77,7 +77,8 @@ jobs:
|
||||
-p 'OrcaSlicer_Windows_*' \
|
||||
-p 'OrcaSlicer_Mac_universal_*' \
|
||||
-p 'OrcaSlicer_Linux_ubuntu_*' \
|
||||
-p 'OrcaSlicer-Linux-flatpak_*'
|
||||
-p 'OrcaSlicer-Linux-flatpak_*' \
|
||||
-p 'PDB'
|
||||
echo "Downloaded artifact folders:"
|
||||
ls -1 artifacts
|
||||
|
||||
@@ -99,6 +100,8 @@ jobs:
|
||||
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).
|
||||
|
||||
@@ -220,7 +220,9 @@ if (MSVC)
|
||||
# /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
|
||||
# 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.
|
||||
#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)
|
||||
@@ -231,6 +233,11 @@ if (MSVC)
|
||||
# Disable warnings on comparison of unsigned and signed
|
||||
# C4018: signed/unsigned mismatch
|
||||
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 ()
|
||||
|
||||
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",
|
||||
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
||||
"version": "02.01.00.15",
|
||||
"version": "02.01.00.16",
|
||||
"force_update": "0",
|
||||
"description": "BBL configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -145,6 +145,7 @@
|
||||
"20"
|
||||
],
|
||||
"support_chamber_temp_control": "1",
|
||||
"support_air_filtration": "1",
|
||||
"upward_compatible_machine": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab P2S 0.4 nozzle",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "M3D",
|
||||
"version": "02.04.00.00",
|
||||
"version": "02.04.00.01",
|
||||
"force_update": "0",
|
||||
"description": "Configuration for M3D printers",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -40,6 +40,5 @@
|
||||
"support_type": "normal(manual)",
|
||||
"travel_speed": "100",
|
||||
"wall_loops": "2",
|
||||
"wipe_tower_extra_spacing": "200%",
|
||||
"wipe_tower_filament": "2"
|
||||
"wipe_tower_extra_spacing": "200%"
|
||||
}
|
||||
|
||||
@@ -41,6 +41,5 @@
|
||||
"top_surface_speed": "40",
|
||||
"travel_speed": "100",
|
||||
"wall_loops": "2",
|
||||
"wipe_tower_extra_spacing": "200%",
|
||||
"wipe_tower_filament": "2"
|
||||
"wipe_tower_extra_spacing": "200%"
|
||||
}
|
||||
|
||||
@@ -25,6 +25,5 @@
|
||||
"top_surface_speed": "40",
|
||||
"travel_speed": "100",
|
||||
"wall_loops": "2",
|
||||
"wipe_tower_extra_spacing": "200%",
|
||||
"wipe_tower_filament": "2"
|
||||
"wipe_tower_extra_spacing": "200%"
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Qidi",
|
||||
"version": "02.04.00.01",
|
||||
"version": "02.04.00.02",
|
||||
"force_update": "0",
|
||||
"description": "Qidi configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
"20"
|
||||
],
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"machine_start_gcode": "INIT_MAPPING_VALUE\nPRINT_START BED=[bed_temperature_initial_layer_single] HOTEND=[nozzle_temperature_initial_layer] CHAMBER=[chamber_temperature] EXTRUDER=[initial_no_support_extruder]\nSET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count]\nM83\nM140 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nM141 S[chamber_temperature]\nG4 P3000\nT[initial_tool]\nG1 X108.000 Y1 F30000\nG0 Z[initial_layer_print_height] F600\n;G1 E3 F1800\nG90\nM83\nG0 X128 E8 F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X133 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X138 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 X143 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X148 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 X153 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG91\nG1 X1 Z-0.300\nG1 X4\nG1 Z1 F1200\nG90\nM400\nG1 X108.000 Y2.5 F30000\nG0 Z[initial_layer_print_height] F600\nM83\nG0 X128 E10 F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X133 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X138 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 X143 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X148 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 X153 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG91\nG1 X1 Z-0.300\nG1 X4\nG1 Z1 F1200\nG90\nM400\nG1 Z1 F600",
|
||||
"machine_start_gcode": "INIT_MAPPING_VALUE\nPRINT_START BED=[bed_temperature_initial_layer_single] HOTEND=[nozzle_temperature_initial_layer] CHAMBER=[chamber_temperature] EXTRUDER=[initial_no_support_extruder]\nSET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count]\nM83\nT[initial_tool]\nM140 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nM141 S[chamber_temperature]\nG4 P3000\nG1 X108 Y1 F30000\nG0 Z[initial_layer_print_height] F600\nG0 X128 E8 F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X133 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X138 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 X143 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X148 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 X153 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X154 Z-0.1\nG1 X158\nG1 Z1 F600\nG1 X108 Y2.5 F30000\nG0 Z[initial_layer_print_height] F600\nG0 X128 E10 F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X133 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X138 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 X143 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X148 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 X153 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X154 Z-0.1\nG1 X158\nG1 Z1 F600",
|
||||
"machine_unload_filament_time": "35",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -261,5 +261,17 @@
|
||||
],
|
||||
"keep_fan_always_on": [
|
||||
"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": [
|
||||
"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": [
|
||||
"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": [
|
||||
"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": [
|
||||
""
|
||||
],
|
||||
"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"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"20"
|
||||
"6"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"120"
|
||||
"30"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"120"
|
||||
"25"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"15"
|
||||
@@ -162,7 +162,7 @@
|
||||
"0"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"0"
|
||||
"0.3"
|
||||
],
|
||||
"filament_z_hop_types": [
|
||||
"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",
|
||||
"thumbnail": "SeeMeCNC Artemis 300_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC Artemis 300",
|
||||
"thumbnail": "SeeMeCNC Artemis 300_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC Artemis 300",
|
||||
"thumbnail": "SeeMeCNC Artemis 300_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC Artemis 300",
|
||||
"thumbnail": "SeeMeCNC Artemis 300_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC BOSSdelta 500 0505",
|
||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0505_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC BOSSdelta 500 0505",
|
||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0505_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC BOSSdelta 500 0505",
|
||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0505_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC BOSSdelta 500 0505",
|
||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0505_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC BOSSdelta 500 0510",
|
||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0510_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC BOSSdelta 500 0510",
|
||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0510_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC BOSSdelta 500 0510",
|
||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0510_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC BOSSdelta 500 0510",
|
||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0510_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC BOSSdelta 500 0521",
|
||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0521_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC BOSSdelta 500 0521",
|
||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0521_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC BOSSdelta 500 0521",
|
||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0521_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC BOSSdelta 500 0521",
|
||||
"thumbnail": "SeeMeCNC BOSSdelta 500 0521_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC BOSSdelta 300",
|
||||
"thumbnail": "SeeMeCNC BOSSdelta 300_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC BOSSdelta 300",
|
||||
"thumbnail": "SeeMeCNC BOSSdelta 300_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC BOSSdelta 300",
|
||||
"thumbnail": "SeeMeCNC BOSSdelta 300_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC BOSSdelta 300",
|
||||
"thumbnail": "SeeMeCNC BOSSdelta 300_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC RostockMAX v3.2",
|
||||
"thumbnail": "SeeMeCNC RostockMAX v3.2_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC RostockMAX v3.2",
|
||||
"thumbnail": "SeeMeCNC RostockMAX v3.2_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC RostockMAX v3.2",
|
||||
"thumbnail": "SeeMeCNC RostockMAX v3.2_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC RostockMAX v3.2",
|
||||
"thumbnail": "SeeMeCNC RostockMAX v3.2_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC RostockMAX v4",
|
||||
"thumbnail": "SeeMeCNC RostockMAX v4_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC RostockMAX v4",
|
||||
"thumbnail": "SeeMeCNC RostockMAX v4_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC RostockMAX v4",
|
||||
"thumbnail": "SeeMeCNC RostockMAX v4_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -348,4 +348,4 @@
|
||||
"model": "SeeMeCNC RostockMAX v4",
|
||||
"thumbnail": "SeeMeCNC RostockMAX v4_cover.png",
|
||||
"description": "SeeMeCNC configurations"
|
||||
}
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm Fine @SeeMeCNC Artemis 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.16mm Fine @SeeMeCNC Artemis 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC Artemis 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.16",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.16mm Fine @SeeMeCNC Artemis 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.16mm Fine @SeeMeCNC Artemis 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC Artemis 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.16",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 300 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.16",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 300 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.16",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.16",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.16",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.16",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.16",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.16",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.16",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC RostockMAX v3.2 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.16",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC RostockMAX v3.2 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.16",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC RostockMAX v4 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.16",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC RostockMAX v4 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.16",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC RostockMAX v3.2 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC RostockMAX v3.2 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Fine @SeeMeCNC Artemis 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Fine @SeeMeCNC Artemis 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC Artemis 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.20mm Fine @SeeMeCNC Artemis 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Fine @SeeMeCNC Artemis 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC Artemis 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 300 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 300 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0505 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0505 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0510 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0510 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0521 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0521 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC RostockMAX v3.2 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC RostockMAX v3.2 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC RostockMAX v4 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC RostockMAX v4 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Standard @SeeMeCNC Artemis 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Standard @SeeMeCNC Artemis 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC Artemis 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.20mm Standard @SeeMeCNC Artemis 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Standard @SeeMeCNC Artemis 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC Artemis 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 300 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 300 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC RostockMAX v3.2 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC RostockMAX v3.2 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC RostockMAX v4 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC RostockMAX v4 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.2",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.24mm Draft @SeeMeCNC Artemis 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.24mm Draft @SeeMeCNC Artemis 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC Artemis 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.24",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.24mm Draft @SeeMeCNC Artemis 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.24mm Draft @SeeMeCNC Artemis 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC Artemis 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.24",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 300 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.24",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 300 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.24",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.24",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.24",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.24",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.24",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.24",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.24",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC RostockMAX v3.2 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.24",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC RostockMAX v3.2 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.24",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC RostockMAX v4 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.24",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
|
||||
"inherits": "SeeMeCNC process base 0.4mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC RostockMAX v4 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.24",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.25mm Standard @SeeMeCNC Artemis 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.25mm Standard @SeeMeCNC Artemis 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC Artemis 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.25",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.25mm Standard @SeeMeCNC Artemis 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.25mm Standard @SeeMeCNC Artemis 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC Artemis 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.25",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 300 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.25",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 300 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.25",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0505 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.25",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0505 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.25",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
}
|
||||
@@ -1,20 +1,20 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0510 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.25",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "0",
|
||||
"spiral_mode": "0"
|
||||
"type": "process",
|
||||
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
|
||||
"inherits": "SeeMeCNC process base 0.5mm",
|
||||
"from": "System",
|
||||
"instantiation": "true",
|
||||
"print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
|
||||
"compatible_printers": [
|
||||
"SeeMeCNC BOSSdelta 500 0510 0.5 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"alternate_extra_wall": "0",
|
||||
"counterbore_hole_bridging": "none",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"layer_height": "0.25",
|
||||
"precise_z_height": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_loops": "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