Run every profile maintenance job from one tool (#15726)

* Run every profile maintenance job from one tool

orca_id_tool.py becomes orca_profile_tool.py, and orca_extra_profile_check.py
and orca_filament_lib.py fold into it as subcommands: check, generate-id, fix,
trim, update-index and update-snapshot. The three scripts already overlapped --
the checker imported half of its rules from the id tool, which in turn kept a
copy-pasted set of output helpers to avoid the resulting import cycle -- while
disagreeing on how a vendor is enumerated, how a JSON file is read and what the
exit code means. One file settles all three.

check, normalize, trim and update-index reproduce their predecessors exactly; normalize and
update-index were diffed byte-for-byte against the old scripts over a copy of
the whole tree. Deliberate changes: the compatible-printers check no longer
switches itself off when --check-materials is passed, an error exits 1 rather
than -1, update-index honours --profile-type and reports a profile it cannot
place instead of dropping it from the index, fix and update-index gained
--dry-run, trim keeps an unindexed file some surviving profile still inherits
from, and vendors are enumerated as directories with an index -- which is why
blacklist.json, a data file that an unscoped index rebuild once wrote four empty
list sections into, loses them here and will not collect them again. The dead
rename_filament_system() helper is gone.

The suite under scripts/tests now covers the maintenance commands too, and CI
runs it; nothing there ran in CI before. No shipped profile data changes apart
from those four keys.

* update vendor index files with "python3 ./scripts/orca_profile_tool.py update-index" and "python3 ./scripts/orca_profile_tool.py normalize"
This commit is contained in:
SoftFever
2026-09-16 19:53:23 +08:00
committed by GitHub
parent 93c8b3f2b0
commit ade9e77b6b
112 changed files with 13257 additions and 17140 deletions
File diff suppressed because it is too large Load Diff
+1461 -1461
View File
File diff suppressed because it is too large Load Diff
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"105"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"100"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"100"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"100"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"100"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"100"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"75"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"70"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"75"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"70"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"80"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"75"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"80"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"75"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"60"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
]
}
@@ -315,6 +315,5 @@
],
"textured_plate_temp_initial_layer": [
"55"
],
"version": "2.0.0.87"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"100"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"35"
],
"version": "2.0.0.77"
]
}
@@ -334,6 +334,5 @@
],
"textured_plate_temp_initial_layer": [
"35"
],
"version": "2.0.0.77"
]
}
@@ -335,6 +335,5 @@
],
"textured_plate_temp_initial_layer": [
"35"
],
"version": "2.0.0.77"
]
}
+4 -4
View File
@@ -89,14 +89,14 @@
"name": "Generic PETG @Chuanying X1 0.25 Nozzle",
"sub_path": "filament/Generic PETG @Chuanying X1 0.25 Nozzle.json"
},
{
"name": "Generic PVA @Chuanying",
"sub_path": "filament/Generic PVA @Chuanying.json"
},
{
"name": "Generic PLA @Chuanying X1 0.25 Nozzle",
"sub_path": "filament/Generic PLA @Chuanying X1 0.25 Nozzle.json"
},
{
"name": "Generic PVA @Chuanying",
"sub_path": "filament/Generic PVA @Chuanying.json"
},
{
"name": "Generic PLA-Silk @Chuanying X1 0.25 Nozzle",
"sub_path": "filament/Generic PLA-Silk @Chuanying X1 0.25 Nozzle.json"
+12 -12
View File
@@ -196,6 +196,10 @@
"name": "Generic ABS @CoLiDo X16",
"sub_path": "filament/Generic ABS @CoLiDo X16.json"
},
{
"name": "CoLiDo PETG @CoLiDo SR1",
"sub_path": "filament/CoLiDo PETG @CoLiDo SR1.json"
},
{
"name": "Generic PETG @CoLiDo DIY 4.0",
"sub_path": "filament/Generic PETG @CoLiDo DIY 4.0.json"
@@ -204,18 +208,6 @@
"name": "Generic PETG @CoLiDo X16",
"sub_path": "filament/Generic PETG @CoLiDo X16.json"
},
{
"name": "CoLiDo PETG @CoLiDo SR1",
"sub_path": "filament/CoLiDo PETG @CoLiDo SR1.json"
},
{
"name": "Generic PLA @CoLiDo DIY 4.0",
"sub_path": "filament/Generic PLA @CoLiDo DIY 4.0.json"
},
{
"name": "Generic PLA @CoLiDo X16",
"sub_path": "filament/Generic PLA @CoLiDo X16.json"
},
{
"name": "CoLiDo PLA @CoLiDo SR1",
"sub_path": "filament/CoLiDo PLA @CoLiDo SR1.json"
@@ -228,6 +220,14 @@
"name": "CoLiDo PLA+ @CoLiDo DIY 4.0 V2",
"sub_path": "filament/CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json"
},
{
"name": "Generic PLA @CoLiDo DIY 4.0",
"sub_path": "filament/Generic PLA @CoLiDo DIY 4.0.json"
},
{
"name": "Generic PLA @CoLiDo X16",
"sub_path": "filament/Generic PLA @CoLiDo X16.json"
},
{
"name": "Generic TPU @CoLiDo DIY 4.0",
"sub_path": "filament/Generic TPU @CoLiDo DIY 4.0.json"
File diff suppressed because it is too large Load Diff
@@ -1,160 +0,0 @@
{
"type": "filament",
"name": "CR-ABS @Ender-5 Max-all",
"inherits": "fdm_filament_abs",
"from": "system",
"setting_id": "iCeI2obXsgQdrmmd",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"complete_print_exhaust_fan_speed": [
"80"
],
"cool_plate_temp": [
"90"
],
"cool_plate_temp_initial_layer": [
"90"
],
"during_print_exhaust_fan_speed": [
"60"
],
"fan_max_speed": [
"30"
],
"filament_cost": [
"15"
],
"filament_density": [
"1.08"
],
"filament_deretraction_speed": [
"35"
],
"filament_diameter": [
"1.75"
],
"filament_flow_ratio": [
"0.93"
],
"filament_is_support": [
"0"
],
"filament_max_volumetric_speed": [
"18"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_retract_before_wipe": [
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_length": [
"nil"
],
"filament_retraction_minimum_travel": [
"1"
],
"filament_retraction_speed": [
"35"
],
"filament_soluble": [
"0"
],
"filament_vendor": [
"Creality"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"2"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"90"
],
"hot_plate_temp_initial_layer": [
"90"
],
"nozzle_temperature_range_high": [
"280"
],
"overhang_fan_speed": [
"60"
],
"required_nozzle_HRC": [
"0"
],
"slow_down_layer_time": [
"12"
],
"textured_plate_temp": [
"90"
],
"textured_plate_temp_initial_layer": [
"90"
],
"filament_start_gcode": [
"; Filament gcode\n"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"activate_chamber_temp_control": "0",
"chamber_temperature": "0",
"cool_cds_fan_start_at_height": "0.5",
"cool_special_cds_fan_speed": "0",
"customized_plate_temp": "90",
"customized_plate_temp_initial_layer": "90",
"default_filament_colour": "\"\"",
"enable_overhang_bridge_fan": "1",
"enable_pressure_advance": "1",
"enable_special_area_additional_cooling_fan": "0",
"epoxy_resin_plate_temp": "90",
"epoxy_resin_plate_temp_initial_layer": "90",
"filament_cooling_final_speed": "3.4",
"filament_cooling_initial_speed": "2.2",
"filament_cooling_moves": "4",
"filament_load_time": "0",
"filament_loading_speed": "28",
"filament_loading_speed_start": "3",
"filament_multitool_ramming": "0",
"filament_multitool_ramming_flow": "10",
"filament_multitool_ramming_volume": "10",
"filament_notes": "\"\"",
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
"filament_retract_lift_above": "nil",
"filament_retract_lift_below": "nil",
"filament_retract_lift_enforce": "nil",
"filament_shrink": "100%",
"filament_toolchange_delay": "0",
"filament_unload_time": "0",
"filament_unloading_speed": "90",
"filament_unloading_speed_start": "100",
"material_flow_dependent_temperature": "0",
"material_flow_temp_graph": "[[3.0,230],[5.0,250],[10.0,260]]",
"pressure_advance": "0.03",
"support_material_interface_fan_speed": "-1",
"compatible_printers": [
"Creality Ender-5 Max 0.4 nozzle"
]
}
@@ -1,185 +0,0 @@
{
"type": "filament",
"name": "CR-Nylon @Ender-5 Max-all",
"inherits": "fdm_filament_pa",
"from": "system",
"setting_id": "HHnHotIUIBzTdckU",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"close_fan_the_first_x_layers": [
"1"
],
"complete_print_exhaust_fan_speed": [
"100"
],
"cool_plate_temp": [
"45"
],
"cool_plate_temp_initial_layer": [
"45"
],
"during_print_exhaust_fan_speed": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_cost": [
"50"
],
"filament_density": [
"1.24"
],
"filament_deretraction_speed": [
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_flow_ratio": [
"0.9"
],
"filament_is_support": [
"0"
],
"filament_max_volumetric_speed": [
"12"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_retract_before_wipe": [
"nil"
],
"filament_retract_restart_extra": [
"0"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_length": [
"1.5"
],
"filament_retraction_minimum_travel": [
"nil"
],
"filament_retraction_speed": [
"nil"
],
"filament_soluble": [
"0"
],
"filament_vendor": [
"Creality"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"nil"
],
"filament_z_hop": [
"0.2"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"45"
],
"hot_plate_temp_initial_layer": [
"45"
],
"nozzle_temperature": [
"250"
],
"nozzle_temperature_initial_layer": [
"250"
],
"nozzle_temperature_range_high": [
"280"
],
"nozzle_temperature_range_low": [
"250"
],
"overhang_fan_speed": [
"50"
],
"overhang_fan_threshold": [
"50%"
],
"reduce_fan_stop_start_freq": [
"1"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"5"
],
"textured_plate_temp": [
"45"
],
"textured_plate_temp_initial_layer": [
"45"
],
"filament_start_gcode": [
"; Filament gcode\n"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"activate_chamber_temp_control": "0",
"chamber_temperature": "35",
"cool_cds_fan_start_at_height": "0.5",
"cool_special_cds_fan_speed": "0",
"default_filament_colour": "\"\"",
"enable_overhang_bridge_fan": "1",
"enable_pressure_advance": "1",
"enable_special_area_additional_cooling_fan": "0",
"epoxy_resin_plate_temp": "45",
"epoxy_resin_plate_temp_initial_layer": "45",
"filament_cooling_final_speed": "3.4",
"filament_cooling_initial_speed": "2.2",
"filament_cooling_moves": "4",
"filament_load_time": "0",
"filament_loading_speed": "28",
"filament_loading_speed_start": "3",
"filament_multitool_ramming": "0",
"filament_multitool_ramming_flow": "10",
"filament_multitool_ramming_volume": "10",
"filament_notes": "\"\"",
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
"filament_retract_lift_above": "0",
"filament_retract_lift_below": "0",
"filament_retract_lift_enforce": "All Surfaces",
"filament_shrink": "100%",
"filament_toolchange_delay": "0",
"filament_unload_time": "0",
"filament_unloading_speed": "90",
"filament_unloading_speed_start": "100",
"material_flow_dependent_temperature": "0",
"material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
"pressure_advance": "0.042",
"support_material_interface_fan_speed": "-1",
"compatible_printers": [
"Creality Ender-5 Max 0.4 nozzle"
]
}
@@ -1,163 +0,0 @@
{
"type": "filament",
"name": "CR-PETG @Ender-5 Max-all",
"inherits": "fdm_filament_petg",
"from": "system",
"setting_id": "jMfevCqhjSPahBHJ",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"close_fan_the_first_x_layers": [
"1"
],
"complete_print_exhaust_fan_speed": [
"0"
],
"cool_plate_temp": [
"70"
],
"cool_plate_temp_initial_layer": [
"70"
],
"during_print_exhaust_fan_speed": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"40"
],
"fan_min_speed": [
"10"
],
"filament_cost": [
"14"
],
"filament_density": [
"1.23"
],
"filament_deretraction_speed": [
"30"
],
"filament_flow_ratio": [
"0.95"
],
"filament_is_support": [
"0"
],
"filament_max_volumetric_speed": [
"16"
],
"filament_retract_before_wipe": [
"80%"
],
"filament_retraction_minimum_travel": [
"1"
],
"filament_retraction_speed": [
"30"
],
"filament_type": [
"PETG"
],
"filament_vendor": [
"Creality"
],
"filament_wipe_distance": [
"2"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"nozzle_temperature": [
"240"
],
"nozzle_temperature_initial_layer": [
"240"
],
"nozzle_temperature_range_high": [
"270"
],
"nozzle_temperature_range_low": [
"220"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"25%"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"0"
],
"temperature_vitrification": [
"80"
],
"textured_plate_temp": [
"80"
],
"textured_plate_temp_initial_layer": [
"80"
],
"filament_start_gcode": [
"; filament start gcode\n"
],
"activate_chamber_temp_control": "0",
"chamber_temperature": "0",
"cool_cds_fan_start_at_height": "0.5",
"cool_special_cds_fan_speed": "0",
"customized_plate_temp": "80",
"customized_plate_temp_initial_layer": "80",
"default_filament_colour": "\"\"",
"enable_overhang_bridge_fan": "1",
"enable_pressure_advance": "1",
"enable_special_area_additional_cooling_fan": "0",
"epoxy_resin_plate_temp": "80",
"epoxy_resin_plate_temp_initial_layer": "80",
"filament_cooling_final_speed": "3.4",
"filament_cooling_initial_speed": "2.2",
"filament_cooling_moves": "4",
"filament_load_time": "0",
"filament_loading_speed": "28",
"filament_loading_speed_start": "3",
"filament_multitool_ramming": "0",
"filament_multitool_ramming_flow": "10",
"filament_multitool_ramming_volume": "10",
"filament_notes": "\"\"",
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
"filament_retract_lift_above": "nil",
"filament_retract_lift_below": "nil",
"filament_retract_lift_enforce": "nil",
"filament_shrink": "100%",
"filament_toolchange_delay": "0",
"filament_unload_time": "0",
"filament_unloading_speed": "90",
"filament_unloading_speed_start": "100",
"material_flow_dependent_temperature": "0",
"material_flow_temp_graph": "[[3.0,220],[5.0,240],[10.0,250]]",
"pressure_advance": "0.05",
"filament_id": "06101",
"support_material_interface_fan_speed": "-1",
"compatible_printers": [
"Creality Ender-5 Max 0.4 nozzle",
"Creality Ender-5 Max 0.6 nozzle",
"Creality Ender-5 Max 0.8 nozzle"
]
}
@@ -1,157 +0,0 @@
{
"type": "filament",
"name": "CR-PLA @Ender-5 Max-all",
"inherits": "fdm_filament_pla",
"from": "system",
"setting_id": "sU0HCPjQoOLHPmPc",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"complete_print_exhaust_fan_speed": [
"80"
],
"cool_plate_temp": [
"45"
],
"cool_plate_temp_initial_layer": [
"45"
],
"during_print_exhaust_fan_speed": [
"60"
],
"eng_plate_temp": [
"50"
],
"eng_plate_temp_initial_layer": [
"50"
],
"filament_deretraction_speed": [
"35"
],
"filament_diameter": [
"1.75"
],
"filament_flow_ratio": [
"0.95"
],
"filament_is_support": [
"0"
],
"filament_max_volumetric_speed": [
"18"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_retract_before_wipe": [
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_length": [
"nil"
],
"filament_retraction_minimum_travel": [
"1"
],
"filament_retraction_speed": [
"35"
],
"filament_soluble": [
"0"
],
"filament_vendor": [
"Creality"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"2"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"50"
],
"hot_plate_temp_initial_layer": [
"50"
],
"nozzle_temperature_range_high": [
"240"
],
"required_nozzle_HRC": [
"0"
],
"slow_down_layer_time": [
"10"
],
"slow_down_min_speed": [
"20"
],
"textured_plate_temp": [
"45"
],
"textured_plate_temp_initial_layer": [
"50"
],
"filament_start_gcode": [
"; Filament gcode\n"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"activate_chamber_temp_control": "0",
"chamber_temperature": "0",
"cool_cds_fan_start_at_height": "0.5",
"cool_special_cds_fan_speed": "0",
"customized_plate_temp": "50",
"customized_plate_temp_initial_layer": "50",
"default_filament_colour": "\"\"",
"enable_overhang_bridge_fan": "1",
"enable_pressure_advance": "1",
"enable_special_area_additional_cooling_fan": "0",
"epoxy_resin_plate_temp": "50",
"epoxy_resin_plate_temp_initial_layer": "50",
"filament_cooling_final_speed": "3.4",
"filament_cooling_initial_speed": "2.2",
"filament_cooling_moves": "4",
"filament_load_time": "0",
"filament_loading_speed": "28",
"filament_loading_speed_start": "3",
"filament_multitool_ramming": "0",
"filament_multitool_ramming_flow": "10",
"filament_multitool_ramming_volume": "10",
"filament_notes": "\"\"",
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
"filament_retract_lift_above": "nil",
"filament_retract_lift_below": "nil",
"filament_retract_lift_enforce": "nil",
"filament_shrink": "100%",
"filament_toolchange_delay": "0",
"filament_unload_time": "0",
"filament_unloading_speed": "90",
"filament_unloading_speed_start": "100",
"material_flow_dependent_temperature": "1",
"material_flow_temp_graph": "[[0.5,190],[1.0,220]]",
"pressure_advance": "0.04",
"support_material_interface_fan_speed": "-1",
"compatible_printers": [
"Creality Ender-5 Max 0.4 nozzle"
]
}
@@ -1,157 +0,0 @@
{
"type": "filament",
"name": "CR-Silk @Ender-5 Max-all",
"inherits": "fdm_filament_pla",
"from": "system",
"setting_id": "vFgKdtdiuqqrL9rk",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"complete_print_exhaust_fan_speed": [
"80"
],
"cool_plate_temp": [
"45"
],
"cool_plate_temp_initial_layer": [
"45"
],
"during_print_exhaust_fan_speed": [
"60"
],
"eng_plate_temp": [
"50"
],
"eng_plate_temp_initial_layer": [
"50"
],
"filament_cost": [
"22"
],
"filament_density": [
"1.25"
],
"filament_deretraction_speed": [
"35"
],
"filament_diameter": [
"1.75"
],
"filament_flow_ratio": [
"0.95"
],
"filament_is_support": [
"0"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_retract_before_wipe": [
"90%"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_length": [
"1"
],
"filament_retraction_minimum_travel": [
"1"
],
"filament_retraction_speed": [
"35"
],
"filament_soluble": [
"0"
],
"filament_vendor": [
"Creality"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"2"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"nozzle_temperature_range_high": [
"240"
],
"required_nozzle_HRC": [
"0"
],
"slow_down_layer_time": [
"12"
],
"slow_down_min_speed": [
"20"
],
"textured_plate_temp": [
"55"
],
"textured_plate_temp_initial_layer": [
"55"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"activate_chamber_temp_control": "0",
"chamber_temperature": "35",
"cool_cds_fan_start_at_height": "0.5",
"cool_special_cds_fan_speed": "0",
"customized_plate_temp": "55",
"customized_plate_temp_initial_layer": "55",
"default_filament_colour": "\"\"",
"enable_overhang_bridge_fan": "1",
"enable_pressure_advance": "1",
"enable_special_area_additional_cooling_fan": "0",
"epoxy_resin_plate_temp": "55",
"epoxy_resin_plate_temp_initial_layer": "55",
"filament_cooling_final_speed": "3.4",
"filament_cooling_initial_speed": "2.2",
"filament_cooling_moves": "4",
"filament_load_time": "0",
"filament_loading_speed": "28",
"filament_loading_speed_start": "3",
"filament_multitool_ramming": "0",
"filament_multitool_ramming_flow": "10",
"filament_multitool_ramming_volume": "10",
"filament_notes": "\"\"",
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
"filament_retract_lift_above": "nil",
"filament_retract_lift_below": "nil",
"filament_retract_lift_enforce": "nil",
"filament_shrink": "100%",
"filament_toolchange_delay": "0",
"filament_unload_time": "0",
"filament_unloading_speed": "90",
"filament_unloading_speed_start": "100",
"material_flow_dependent_temperature": "0",
"material_flow_temp_graph": "[[1.0,190],[1.2,220]]",
"pressure_advance": "0.048",
"support_material_interface_fan_speed": "-1",
"compatible_printers": [
"Creality Ender-5 Max 0.4 nozzle"
]
}
@@ -1,163 +0,0 @@
{
"type": "filament",
"name": "Generic ABS @Ender-5 Max-all",
"inherits": "fdm_filament_abs",
"from": "system",
"setting_id": "3BjyaE4hGrz7tqnk",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"complete_print_exhaust_fan_speed": [
"80"
],
"cool_plate_temp": [
"90"
],
"cool_plate_temp_initial_layer": [
"90"
],
"during_print_exhaust_fan_speed": [
"60"
],
"fan_max_speed": [
"30"
],
"filament_cost": [
"15"
],
"filament_density": [
"1.24"
],
"filament_deretraction_speed": [
"35"
],
"filament_diameter": [
"1.75"
],
"filament_flow_ratio": [
"0.95"
],
"filament_is_support": [
"0"
],
"filament_max_volumetric_speed": [
"18"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_retract_before_wipe": [
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_length": [
"nil"
],
"filament_retraction_minimum_travel": [
"1"
],
"filament_retraction_speed": [
"35"
],
"filament_soluble": [
"0"
],
"filament_vendor": [
"Generic"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"2"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"90"
],
"hot_plate_temp_initial_layer": [
"90"
],
"nozzle_temperature_range_high": [
"280"
],
"overhang_fan_speed": [
"60"
],
"reduce_fan_stop_start_freq": [
"0"
],
"required_nozzle_HRC": [
"0"
],
"slow_down_layer_time": [
"12"
],
"textured_plate_temp": [
"90"
],
"textured_plate_temp_initial_layer": [
"90"
],
"filament_start_gcode": [
"; Filament gcode\n"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"activate_chamber_temp_control": "0",
"chamber_temperature": "0",
"cool_cds_fan_start_at_height": "0.5",
"cool_special_cds_fan_speed": "0",
"customized_plate_temp": "90",
"customized_plate_temp_initial_layer": "90",
"default_filament_colour": "\"\"",
"enable_overhang_bridge_fan": "1",
"enable_pressure_advance": "1",
"enable_special_area_additional_cooling_fan": "0",
"epoxy_resin_plate_temp": "90",
"epoxy_resin_plate_temp_initial_layer": "90",
"filament_cooling_final_speed": "3.4",
"filament_cooling_initial_speed": "2.2",
"filament_cooling_moves": "4",
"filament_load_time": "0",
"filament_loading_speed": "28",
"filament_loading_speed_start": "3",
"filament_multitool_ramming": "0",
"filament_multitool_ramming_flow": "10",
"filament_multitool_ramming_volume": "10",
"filament_notes": "\"\"",
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
"filament_retract_lift_above": "nil",
"filament_retract_lift_below": "nil",
"filament_retract_lift_enforce": "nil",
"filament_shrink": "100%",
"filament_toolchange_delay": "0",
"filament_unload_time": "0",
"filament_unloading_speed": "90",
"filament_unloading_speed_start": "100",
"material_flow_dependent_temperature": "0",
"material_flow_temp_graph": "[[3.0,230],[5.0,250],[10.0,260]]",
"pressure_advance": "0.034",
"support_material_interface_fan_speed": "-1",
"compatible_printers": [
"Creality Ender-5 Max 0.4 nozzle"
]
}
@@ -1,175 +0,0 @@
{
"type": "filament",
"name": "Generic ASA @Ender-5 Max-all",
"inherits": "fdm_filament_asa",
"from": "system",
"setting_id": "1cOFjktr0dBTbYS4",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"close_fan_the_first_x_layers": [
"1"
],
"complete_print_exhaust_fan_speed": [
"80"
],
"cool_plate_temp": [
"90"
],
"cool_plate_temp_initial_layer": [
"90"
],
"during_print_exhaust_fan_speed": [
"60"
],
"eng_plate_temp": [
"50"
],
"eng_plate_temp_initial_layer": [
"50"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"70"
],
"fan_min_speed": [
"20"
],
"filament_cost": [
"30"
],
"filament_density": [
"1.24"
],
"filament_deretraction_speed": [
"35"
],
"filament_diameter": [
"1.75"
],
"filament_flow_ratio": [
"0.93"
],
"filament_is_support": [
"0"
],
"filament_max_volumetric_speed": [
"12"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_retract_before_wipe": [
"100%"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_length": [
"nil"
],
"filament_retraction_minimum_travel": [
"1"
],
"filament_retraction_speed": [
"35"
],
"filament_soluble": [
"0"
],
"filament_vendor": [
"Generic"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"2"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"90"
],
"hot_plate_temp_initial_layer": [
"90"
],
"nozzle_temperature_range_high": [
"280"
],
"reduce_fan_stop_start_freq": [
"0"
],
"required_nozzle_HRC": [
"0"
],
"slow_down_layer_time": [
"12"
],
"textured_plate_temp": [
"90"
],
"textured_plate_temp_initial_layer": [
"90"
],
"filament_start_gcode": [
"; filament start gcode\n"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"activate_chamber_temp_control": "0",
"chamber_temperature": "55",
"cool_cds_fan_start_at_height": "0.5",
"cool_special_cds_fan_speed": "0",
"customized_plate_temp": "90",
"customized_plate_temp_initial_layer": "90",
"default_filament_colour": "\"\"",
"enable_overhang_bridge_fan": "1",
"enable_pressure_advance": "1",
"enable_special_area_additional_cooling_fan": "0",
"epoxy_resin_plate_temp": "90",
"epoxy_resin_plate_temp_initial_layer": "90",
"filament_cooling_final_speed": "3.4",
"filament_cooling_initial_speed": "2.2",
"filament_cooling_moves": "4",
"filament_load_time": "0",
"filament_loading_speed": "28",
"filament_loading_speed_start": "3",
"filament_multitool_ramming": "0",
"filament_multitool_ramming_flow": "10",
"filament_multitool_ramming_volume": "10",
"filament_notes": "\"\"",
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
"filament_retract_lift_above": "nil",
"filament_retract_lift_below": "nil",
"filament_retract_lift_enforce": "nil",
"filament_shrink": "100%",
"filament_toolchange_delay": "0",
"filament_unload_time": "0",
"filament_unloading_speed": "90",
"filament_unloading_speed_start": "100",
"material_flow_dependent_temperature": "0",
"material_flow_temp_graph": "[[3.0,240],[8.0,250],[12.0,260]]",
"pressure_advance": "0.03",
"support_material_interface_fan_speed": "-1",
"compatible_printers": [
"Creality Ender-5 Max 0.4 nozzle"
]
}
@@ -1,163 +0,0 @@
{
"type": "filament",
"name": "Generic PETG @Ender-5 Max-all",
"inherits": "fdm_filament_petg",
"from": "system",
"setting_id": "yNgF407ERXuU7LHE",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"close_fan_the_first_x_layers": [
"1"
],
"complete_print_exhaust_fan_speed": [
"0"
],
"cool_plate_temp": [
"70"
],
"cool_plate_temp_initial_layer": [
"70"
],
"during_print_exhaust_fan_speed": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"60"
],
"fan_min_speed": [
"20"
],
"filament_cost": [
"14"
],
"filament_density": [
"1.24"
],
"filament_deretraction_speed": [
"40"
],
"filament_flow_ratio": [
"0.95"
],
"filament_is_support": [
"0"
],
"filament_max_volumetric_speed": [
"14"
],
"filament_retract_before_wipe": [
"90%"
],
"filament_retraction_length": [
"0.4"
],
"filament_retraction_minimum_travel": [
"1"
],
"filament_retraction_speed": [
"40"
],
"filament_type": [
"PETG"
],
"filament_wipe_distance": [
"2"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"nozzle_temperature": [
"240"
],
"nozzle_temperature_initial_layer": [
"240"
],
"nozzle_temperature_range_high": [
"270"
],
"nozzle_temperature_range_low": [
"220"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"25%"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"0"
],
"slow_down_layer_time": [
"12"
],
"temperature_vitrification": [
"80"
],
"textured_plate_temp": [
"80"
],
"textured_plate_temp_initial_layer": [
"80"
],
"filament_start_gcode": [
"; filament start gcode\n"
],
"activate_chamber_temp_control": "0",
"chamber_temperature": "0",
"cool_cds_fan_start_at_height": "0.5",
"cool_special_cds_fan_speed": "0",
"customized_plate_temp": "80",
"customized_plate_temp_initial_layer": "80",
"default_filament_colour": "\"\"",
"enable_overhang_bridge_fan": "1",
"enable_pressure_advance": "1",
"enable_special_area_additional_cooling_fan": "0",
"epoxy_resin_plate_temp": "80",
"epoxy_resin_plate_temp_initial_layer": "80",
"filament_cooling_final_speed": "3.4",
"filament_cooling_initial_speed": "2.2",
"filament_cooling_moves": "4",
"filament_load_time": "0",
"filament_loading_speed": "28",
"filament_loading_speed_start": "3",
"filament_multitool_ramming": "0",
"filament_multitool_ramming_flow": "10",
"filament_multitool_ramming_volume": "10",
"filament_notes": "\"\"",
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
"filament_retract_lift_above": "nil",
"filament_retract_lift_below": "nil",
"filament_retract_lift_enforce": "nil",
"filament_shrink": "100%",
"filament_toolchange_delay": "0",
"filament_unload_time": "0",
"filament_unloading_speed": "90",
"filament_unloading_speed_start": "100",
"material_flow_dependent_temperature": "0",
"material_flow_temp_graph": "[[0.8,230],[1.0,240]]",
"pressure_advance": "0.064",
"support_material_interface_fan_speed": "-1",
"compatible_printers": [
"Creality Ender-5 Max 0.4 nozzle"
]
}
@@ -1,161 +0,0 @@
{
"type": "filament",
"name": "Generic PLA @Ender-5 Max-all",
"inherits": "fdm_filament_pla",
"from": "system",
"setting_id": "ubfcxetXGj6agAoi",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"complete_print_exhaust_fan_speed": [
"0"
],
"cool_plate_temp": [
"45"
],
"cool_plate_temp_initial_layer": [
"45"
],
"during_print_exhaust_fan_speed": [
"0"
],
"eng_plate_temp": [
"50"
],
"eng_plate_temp_initial_layer": [
"50"
],
"filament_deretraction_speed": [
"35"
],
"filament_diameter": [
"1.75"
],
"filament_flow_ratio": [
"0.95"
],
"filament_is_support": [
"0"
],
"filament_max_volumetric_speed": [
"14"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_retract_before_wipe": [
"80%"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_length": [
"0.8"
],
"filament_retraction_minimum_travel": [
"1"
],
"filament_retraction_speed": [
"35"
],
"filament_soluble": [
"0"
],
"filament_vendor": [
"Generic"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"2"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"nozzle_temperature": [
"210"
],
"nozzle_temperature_initial_layer": [
"210"
],
"nozzle_temperature_range_high": [
"240"
],
"required_nozzle_HRC": [
"0"
],
"slow_down_layer_time": [
"12"
],
"slow_down_min_speed": [
"20"
],
"textured_plate_temp": [
"55"
],
"textured_plate_temp_initial_layer": [
"55"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"activate_chamber_temp_control": "0",
"chamber_temperature": "0",
"cool_cds_fan_start_at_height": "0.5",
"cool_special_cds_fan_speed": "0",
"customized_plate_temp": "55",
"customized_plate_temp_initial_layer": "55",
"default_filament_colour": "\"\"",
"enable_overhang_bridge_fan": "1",
"enable_pressure_advance": "1",
"enable_special_area_additional_cooling_fan": "0",
"epoxy_resin_plate_temp": "55",
"epoxy_resin_plate_temp_initial_layer": "55",
"filament_cooling_final_speed": "3.4",
"filament_cooling_initial_speed": "2.2",
"filament_cooling_moves": "4",
"filament_load_time": "0",
"filament_loading_speed": "28",
"filament_loading_speed_start": "3",
"filament_multitool_ramming": "0",
"filament_multitool_ramming_flow": "10",
"filament_multitool_ramming_volume": "10",
"filament_notes": "\"\"",
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
"filament_retract_lift_above": "nil",
"filament_retract_lift_below": "nil",
"filament_retract_lift_enforce": "nil",
"filament_shrink": "100%",
"filament_shrinkage_compensation_z": "100%",
"filament_toolchange_delay": "0",
"filament_unload_time": "0",
"filament_unloading_speed": "90",
"filament_unloading_speed_start": "100",
"material_flow_dependent_temperature": "0",
"material_flow_temp_graph": "[[0.8,190],[1.0,210]]",
"pressure_advance": "0.04",
"support_material_interface_fan_speed": "-1",
"compatible_printers": [
"Creality Ender-5 Max 0.4 nozzle"
]
}
@@ -1,161 +0,0 @@
{
"type": "filament",
"name": "Generic PLA-CF @Ender-5 Max-all",
"inherits": "fdm_filament_pla",
"from": "system",
"setting_id": "AHrCSGRui6sRCmQx",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"complete_print_exhaust_fan_speed": [
"0"
],
"cool_plate_temp": [
"45"
],
"cool_plate_temp_initial_layer": [
"45"
],
"during_print_exhaust_fan_speed": [
"0"
],
"eng_plate_temp": [
"50"
],
"eng_plate_temp_initial_layer": [
"50"
],
"filament_cost": [
"30"
],
"filament_deretraction_speed": [
"35"
],
"filament_diameter": [
"1.75"
],
"filament_flow_ratio": [
"0.95"
],
"filament_is_support": [
"0"
],
"filament_max_volumetric_speed": [
"18"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_retract_before_wipe": [
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_length": [
"nil"
],
"filament_retraction_minimum_travel": [
"1"
],
"filament_retraction_speed": [
"35"
],
"filament_soluble": [
"0"
],
"filament_type": [
"PLA-CF"
],
"filament_vendor": [
"Generic"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"2"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"50"
],
"hot_plate_temp_initial_layer": [
"50"
],
"nozzle_temperature_range_high": [
"240"
],
"required_nozzle_HRC": [
"0"
],
"slow_down_layer_time": [
"10"
],
"slow_down_min_speed": [
"20"
],
"textured_plate_temp": [
"50"
],
"textured_plate_temp_initial_layer": [
"50"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"activate_chamber_temp_control": "0",
"chamber_temperature": "0",
"cool_cds_fan_start_at_height": "0.5",
"cool_special_cds_fan_speed": "0",
"customized_plate_temp": "50",
"customized_plate_temp_initial_layer": "50",
"default_filament_colour": "\"\"",
"enable_overhang_bridge_fan": "1",
"enable_pressure_advance": "1",
"enable_special_area_additional_cooling_fan": "0",
"epoxy_resin_plate_temp": "50",
"epoxy_resin_plate_temp_initial_layer": "50",
"filament_cooling_final_speed": "3.4",
"filament_cooling_initial_speed": "2.2",
"filament_cooling_moves": "4",
"filament_load_time": "0",
"filament_loading_speed": "28",
"filament_loading_speed_start": "3",
"filament_multitool_ramming": "0",
"filament_multitool_ramming_flow": "10",
"filament_multitool_ramming_volume": "10",
"filament_notes": "\"\"",
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
"filament_retract_lift_above": "nil",
"filament_retract_lift_below": "nil",
"filament_retract_lift_enforce": "nil",
"filament_shrink": "100%",
"filament_shrinkage_compensation_z": "100%",
"filament_toolchange_delay": "0",
"filament_unload_time": "0",
"filament_unloading_speed": "90",
"filament_unloading_speed_start": "100",
"material_flow_dependent_temperature": "0",
"material_flow_temp_graph": "[[1.0,190],[1.2,220]]",
"pressure_advance": "0.03",
"support_material_interface_fan_speed": "-1",
"compatible_printers": [
"Creality Ender-5 Max 0.4 nozzle"
]
}
@@ -1,155 +0,0 @@
{
"type": "filament",
"name": "Generic PLA-Silk @Ender-5 Max-all",
"inherits": "fdm_filament_pla",
"from": "system",
"setting_id": "zIrKl9P6Aer6sbiS",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"complete_print_exhaust_fan_speed": [
"0"
],
"cool_plate_temp": [
"45"
],
"cool_plate_temp_initial_layer": [
"45"
],
"during_print_exhaust_fan_speed": [
"0"
],
"eng_plate_temp": [
"50"
],
"eng_plate_temp_initial_layer": [
"50"
],
"filament_deretraction_speed": [
"30"
],
"filament_diameter": [
"1.75"
],
"filament_flow_ratio": [
"0.95"
],
"filament_is_support": [
"0"
],
"filament_max_volumetric_speed": [
"10"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_retract_before_wipe": [
"80%"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_length": [
"0.8"
],
"filament_retraction_minimum_travel": [
"1"
],
"filament_retraction_speed": [
"30"
],
"filament_soluble": [
"0"
],
"filament_vendor": [
"Generic"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"2"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"nozzle_temperature_range_high": [
"240"
],
"required_nozzle_HRC": [
"0"
],
"slow_down_layer_time": [
"14"
],
"slow_down_min_speed": [
"20"
],
"textured_plate_temp": [
"55"
],
"textured_plate_temp_initial_layer": [
"55"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"activate_chamber_temp_control": "0",
"chamber_temperature": "0",
"cool_cds_fan_start_at_height": "0.5",
"cool_special_cds_fan_speed": "0",
"customized_plate_temp": "55",
"customized_plate_temp_initial_layer": "55",
"default_filament_colour": "\"\"",
"enable_overhang_bridge_fan": "1",
"enable_pressure_advance": "1",
"enable_special_area_additional_cooling_fan": "0",
"epoxy_resin_plate_temp": "55",
"epoxy_resin_plate_temp_initial_layer": "55",
"filament_cooling_final_speed": "3.4",
"filament_cooling_initial_speed": "2.2",
"filament_cooling_moves": "4",
"filament_load_time": "0",
"filament_loading_speed": "28",
"filament_loading_speed_start": "3",
"filament_multitool_ramming": "0",
"filament_multitool_ramming_flow": "10",
"filament_multitool_ramming_volume": "10",
"filament_notes": "\"\"",
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
"filament_retract_lift_above": "nil",
"filament_retract_lift_below": "nil",
"filament_retract_lift_enforce": "nil",
"filament_shrink": "100%",
"filament_shrinkage_compensation_z": "100%",
"filament_toolchange_delay": "0",
"filament_unload_time": "0",
"filament_unloading_speed": "90",
"filament_unloading_speed_start": "100",
"material_flow_dependent_temperature": "0",
"material_flow_temp_graph": "[[0.8,190],[1.0,220]]",
"pressure_advance": "0.044",
"support_material_interface_fan_speed": "-1",
"compatible_printers": [
"Creality Ender-5 Max 0.4 nozzle"
]
}
@@ -1,166 +0,0 @@
{
"type": "filament",
"name": "Generic TPU @Ender-5 Max-all",
"inherits": "fdm_filament_tpu",
"from": "system",
"setting_id": "KPUcdZyegXYeyHOL",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"complete_print_exhaust_fan_speed": [
"0"
],
"cool_plate_temp": [
"45"
],
"cool_plate_temp_initial_layer": [
"45"
],
"during_print_exhaust_fan_speed": [
"0"
],
"eng_plate_temp": [
"35"
],
"eng_plate_temp_initial_layer": [
"35"
],
"filament_cost": [
"25"
],
"filament_deretraction_speed": [
"35"
],
"filament_diameter": [
"1.75"
],
"filament_flow_ratio": [
"1"
],
"filament_is_support": [
"0"
],
"filament_max_volumetric_speed": [
"2"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_retract_before_wipe": [
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_length": [
"1"
],
"filament_retraction_minimum_travel": [
"2"
],
"filament_retraction_speed": [
"35"
],
"filament_soluble": [
"0"
],
"filament_vendor": [
"Generic"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"2"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"50"
],
"hot_plate_temp_initial_layer": [
"50"
],
"nozzle_temperature": [
"210"
],
"nozzle_temperature_initial_layer": [
"210"
],
"nozzle_temperature_range_high": [
"220"
],
"overhang_fan_threshold": [
"50%"
],
"required_nozzle_HRC": [
"0"
],
"slow_down_layer_time": [
"10"
],
"slow_down_min_speed": [
"10"
],
"textured_plate_temp": [
"50"
],
"textured_plate_temp_initial_layer": [
"50"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"activate_chamber_temp_control": "0",
"chamber_temperature": "0",
"cool_cds_fan_start_at_height": "0.5",
"cool_special_cds_fan_speed": "0",
"customized_plate_temp": "50",
"customized_plate_temp_initial_layer": "50",
"default_filament_colour": "\"\"",
"enable_overhang_bridge_fan": "1",
"enable_pressure_advance": "1",
"enable_special_area_additional_cooling_fan": "0",
"epoxy_resin_plate_temp": "50",
"epoxy_resin_plate_temp_initial_layer": "50",
"filament_cooling_final_speed": "3.4",
"filament_cooling_initial_speed": "2.2",
"filament_cooling_moves": "4",
"filament_load_time": "0",
"filament_loading_speed": "28",
"filament_loading_speed_start": "3",
"filament_multitool_ramming": "0",
"filament_multitool_ramming_flow": "10",
"filament_multitool_ramming_volume": "10",
"filament_notes": "\"\"",
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
"filament_retract_lift_above": "nil",
"filament_retract_lift_below": "nil",
"filament_retract_lift_enforce": "nil",
"filament_shrink": "100%",
"filament_toolchange_delay": "0",
"filament_unload_time": "0",
"filament_unloading_speed": "90",
"filament_unloading_speed_start": "100",
"material_flow_dependent_temperature": "0",
"material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
"pressure_advance": "0.4",
"support_material_interface_fan_speed": "-1",
"compatible_printers": [
"Creality Ender-5 Max 0.4 nozzle"
]
}
@@ -1,175 +0,0 @@
{
"type": "filament",
"name": "HP-ASA @Ender-5 Max-all",
"inherits": "fdm_filament_asa",
"from": "system",
"setting_id": "JzsojF2Um23vm2qT",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"close_fan_the_first_x_layers": [
"1"
],
"complete_print_exhaust_fan_speed": [
"80"
],
"cool_plate_temp": [
"90"
],
"cool_plate_temp_initial_layer": [
"90"
],
"during_print_exhaust_fan_speed": [
"60"
],
"eng_plate_temp": [
"50"
],
"eng_plate_temp_initial_layer": [
"50"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"50"
],
"fan_min_speed": [
"20"
],
"filament_cost": [
"29"
],
"filament_density": [
"1.15"
],
"filament_deretraction_speed": [
"35"
],
"filament_diameter": [
"1.75"
],
"filament_flow_ratio": [
"0.88"
],
"filament_is_support": [
"0"
],
"filament_max_volumetric_speed": [
"16"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_retract_before_wipe": [
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_length": [
"nil"
],
"filament_retraction_minimum_travel": [
"1"
],
"filament_retraction_speed": [
"35"
],
"filament_soluble": [
"0"
],
"filament_vendor": [
"Creality"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"2"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"90"
],
"hot_plate_temp_initial_layer": [
"90"
],
"nozzle_temperature_range_high": [
"280"
],
"reduce_fan_stop_start_freq": [
"0"
],
"required_nozzle_HRC": [
"0"
],
"slow_down_layer_time": [
"10"
],
"textured_plate_temp": [
"90"
],
"textured_plate_temp_initial_layer": [
"90"
],
"filament_start_gcode": [
"; filament start gcode\n"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"activate_chamber_temp_control": "0",
"chamber_temperature": "55",
"cool_cds_fan_start_at_height": "0.5",
"cool_special_cds_fan_speed": "0",
"customized_plate_temp": "90",
"customized_plate_temp_initial_layer": "90",
"default_filament_colour": "\"\"",
"enable_overhang_bridge_fan": "1",
"enable_pressure_advance": "1",
"enable_special_area_additional_cooling_fan": "0",
"epoxy_resin_plate_temp": "90",
"epoxy_resin_plate_temp_initial_layer": "90",
"filament_cooling_final_speed": "3.4",
"filament_cooling_initial_speed": "2.2",
"filament_cooling_moves": "4",
"filament_load_time": "0",
"filament_loading_speed": "28",
"filament_loading_speed_start": "3",
"filament_multitool_ramming": "0",
"filament_multitool_ramming_flow": "10",
"filament_multitool_ramming_volume": "10",
"filament_notes": "\"\"",
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
"filament_retract_lift_above": "nil",
"filament_retract_lift_below": "nil",
"filament_retract_lift_enforce": "nil",
"filament_shrink": "100%",
"filament_toolchange_delay": "0",
"filament_unload_time": "0",
"filament_unloading_speed": "90",
"filament_unloading_speed_start": "100",
"material_flow_dependent_temperature": "0",
"material_flow_temp_graph": "[[3.0,240],[8.0,250],[12.0,260]]",
"pressure_advance": "0.032",
"support_material_interface_fan_speed": "-1",
"compatible_printers": [
"Creality Ender-5 Max 0.4 nozzle"
]
}
@@ -1,168 +0,0 @@
{
"type": "filament",
"name": "HP-TPU @Ender-5 Max-all",
"inherits": "fdm_filament_tpu",
"from": "system",
"setting_id": "7Y7KjqVEXrce3jKO",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"complete_print_exhaust_fan_speed": [
"0"
],
"cool_plate_temp": [
"45"
],
"cool_plate_temp_initial_layer": [
"45"
],
"during_print_exhaust_fan_speed": [
"0"
],
"eng_plate_temp": [
"35"
],
"eng_plate_temp_initial_layer": [
"35"
],
"filament_density": [
"1.26"
],
"filament_deretraction_speed": [
"35"
],
"filament_diameter": [
"1.75"
],
"filament_flow_ratio": [
"1"
],
"filament_is_support": [
"0"
],
"filament_max_volumetric_speed": [
"2.5"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_retract_before_wipe": [
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_length": [
"1"
],
"filament_retraction_minimum_travel": [
"2"
],
"filament_retraction_speed": [
"35"
],
"filament_soluble": [
"0"
],
"filament_vendor": [
"Creality"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"2"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"50"
],
"hot_plate_temp_initial_layer": [
"50"
],
"nozzle_temperature": [
"210"
],
"nozzle_temperature_initial_layer": [
"210"
],
"nozzle_temperature_range_high": [
"220"
],
"overhang_fan_threshold": [
"50%"
],
"required_nozzle_HRC": [
"0"
],
"slow_down_layer_time": [
"10"
],
"slow_down_min_speed": [
"10"
],
"textured_plate_temp": [
"50"
],
"textured_plate_temp_initial_layer": [
"50"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"activate_chamber_temp_control": "0",
"chamber_temperature": "0",
"cool_cds_fan_start_at_height": "0.5",
"cool_special_cds_fan_speed": "0",
"customized_plate_temp": "50",
"customized_plate_temp_initial_layer": "50",
"default_filament_colour": "\"\"",
"enable_overhang_bridge_fan": "1",
"enable_pressure_advance": "1",
"enable_special_area_additional_cooling_fan": "0",
"epoxy_resin_plate_temp": "50",
"epoxy_resin_plate_temp_initial_layer": "50",
"filament_cooling_final_speed": "3.4",
"filament_cooling_initial_speed": "2.2",
"filament_cooling_moves": "4",
"filament_load_time": "0",
"filament_loading_speed": "28",
"filament_loading_speed_start": "3",
"filament_multitool_ramming": "0",
"filament_multitool_ramming_flow": "10",
"filament_multitool_ramming_volume": "10",
"filament_notes": "\"\"",
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
"filament_retract_lift_above": "nil",
"filament_retract_lift_below": "nil",
"filament_retract_lift_enforce": "nil",
"filament_shrink": "100%",
"filament_toolchange_delay": "0",
"filament_unload_time": "0",
"filament_unloading_speed": "90",
"filament_unloading_speed_start": "100",
"material_flow_dependent_temperature": "0",
"material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
"pressure_advance": "0.4",
"support_material_interface_fan_speed": "-1",
"compatible_printers": [
"Creality Ender-5 Max 0.4 nozzle",
"Creality Ender-5 Max 0.6 nozzle",
"Creality Ender-5 Max 0.8 nozzle"
]
}
@@ -1,166 +0,0 @@
{
"type": "filament",
"name": "Hyper ABS @Ender-5 Max-all",
"inherits": "fdm_filament_abs",
"from": "system",
"setting_id": "jPfMyNBquP31h2Eb",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"complete_print_exhaust_fan_speed": [
"80"
],
"cool_plate_temp": [
"90"
],
"cool_plate_temp_initial_layer": [
"90"
],
"during_print_exhaust_fan_speed": [
"60"
],
"fan_max_speed": [
"20"
],
"fan_min_speed": [
"20"
],
"filament_cost": [
"15"
],
"filament_density": [
"1.08"
],
"filament_deretraction_speed": [
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_flow_ratio": [
"0.92"
],
"filament_is_support": [
"0"
],
"filament_max_volumetric_speed": [
"60"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_retract_before_wipe": [
"nil"
],
"filament_retract_restart_extra": [
"0"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_length": [
"nil"
],
"filament_retraction_minimum_travel": [
"nil"
],
"filament_retraction_speed": [
"nil"
],
"filament_soluble": [
"0"
],
"filament_vendor": [
"Creality"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"nil"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"90"
],
"hot_plate_temp_initial_layer": [
"90"
],
"nozzle_temperature_range_high": [
"260"
],
"nozzle_temperature_range_low": [
"230"
],
"overhang_fan_speed": [
"20"
],
"required_nozzle_HRC": [
"0"
],
"slow_down_layer_time": [
"5"
],
"textured_plate_temp": [
"90"
],
"textured_plate_temp_initial_layer": [
"90"
],
"filament_start_gcode": [
"; Filament gcode\n"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"activate_chamber_temp_control": "0",
"chamber_temperature": "35",
"cool_cds_fan_start_at_height": "0.5",
"cool_special_cds_fan_speed": "0",
"default_filament_colour": "\"\"",
"enable_overhang_bridge_fan": "1",
"enable_pressure_advance": "1",
"enable_special_area_additional_cooling_fan": "0",
"epoxy_resin_plate_temp": "90",
"epoxy_resin_plate_temp_initial_layer": "90",
"filament_cooling_final_speed": "3.4",
"filament_cooling_initial_speed": "2.2",
"filament_cooling_moves": "4",
"filament_load_time": "0",
"filament_loading_speed": "28",
"filament_loading_speed_start": "3",
"filament_multitool_ramming": "0",
"filament_multitool_ramming_flow": "10",
"filament_multitool_ramming_volume": "10",
"filament_notes": "\"\"",
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
"filament_retract_lift_above": "0",
"filament_retract_lift_below": "0",
"filament_retract_lift_enforce": "All Surfaces",
"filament_shrink": "100%",
"filament_toolchange_delay": "0",
"filament_unload_time": "0",
"filament_unloading_speed": "90",
"filament_unloading_speed_start": "100",
"material_flow_dependent_temperature": "0",
"material_flow_temp_graph": "[[3.0,230],[5.0,250],[10.0,260]]",
"pressure_advance": "0.025",
"support_material_interface_fan_speed": "-1",
"compatible_printers": [
"Creality Ender-5 Max 0.4 nozzle",
"Creality Ender-5 Max 0.6 nozzle",
"Creality Ender-5 Max 0.8 nozzle"
]
}
@@ -1,163 +0,0 @@
{
"type": "filament",
"name": "Hyper PETG @Ender-5 Max-all",
"inherits": "fdm_filament_petg",
"from": "system",
"setting_id": "nr57CpZ5PwPmcOCR",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"close_fan_the_first_x_layers": [
"1"
],
"complete_print_exhaust_fan_speed": [
"0"
],
"cool_plate_temp": [
"70"
],
"cool_plate_temp_initial_layer": [
"70"
],
"during_print_exhaust_fan_speed": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"50"
],
"fan_min_speed": [
"20"
],
"filament_cost": [
"25"
],
"filament_density": [
"1.23"
],
"filament_deretraction_speed": [
"30"
],
"filament_flow_ratio": [
"0.95"
],
"filament_is_support": [
"0"
],
"filament_max_volumetric_speed": [
"23"
],
"filament_retract_before_wipe": [
"80%"
],
"filament_retraction_minimum_travel": [
"1"
],
"filament_retraction_speed": [
"30"
],
"filament_type": [
"PETG"
],
"filament_vendor": [
"Creality"
],
"filament_wipe_distance": [
"2"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"nozzle_temperature": [
"240"
],
"nozzle_temperature_initial_layer": [
"240"
],
"nozzle_temperature_range_high": [
"270"
],
"nozzle_temperature_range_low": [
"220"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"25%"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"0"
],
"slow_down_layer_time": [
"12"
],
"temperature_vitrification": [
"80"
],
"textured_plate_temp": [
"80"
],
"textured_plate_temp_initial_layer": [
"80"
],
"filament_start_gcode": [
"; filament start gcode\n"
],
"activate_chamber_temp_control": "0",
"chamber_temperature": "0",
"cool_cds_fan_start_at_height": "0.5",
"cool_special_cds_fan_speed": "0",
"customized_plate_temp": "80",
"customized_plate_temp_initial_layer": "80",
"default_filament_colour": "\"\"",
"enable_overhang_bridge_fan": "1",
"enable_pressure_advance": "1",
"enable_special_area_additional_cooling_fan": "0",
"epoxy_resin_plate_temp": "80",
"epoxy_resin_plate_temp_initial_layer": "80",
"filament_cooling_final_speed": "3.4",
"filament_cooling_initial_speed": "2.2",
"filament_cooling_moves": "4",
"filament_load_time": "0",
"filament_loading_speed": "28",
"filament_loading_speed_start": "3",
"filament_multitool_ramming": "0",
"filament_multitool_ramming_flow": "10",
"filament_multitool_ramming_volume": "10",
"filament_notes": "\"\"",
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
"filament_retract_lift_above": "nil",
"filament_retract_lift_below": "nil",
"filament_retract_lift_enforce": "nil",
"filament_shrink": "100%",
"filament_toolchange_delay": "0",
"filament_unload_time": "0",
"filament_unloading_speed": "90",
"filament_unloading_speed_start": "100",
"material_flow_dependent_temperature": "0",
"material_flow_temp_graph": "[[0.8,220],[1.0,240]]",
"pressure_advance": "0.05",
"support_material_interface_fan_speed": "-1",
"compatible_printers": [
"Creality Ender-5 Max 0.4 nozzle"
]
}
@@ -1,160 +0,0 @@
{
"type": "filament",
"name": "Hyper PLA @Ender-5 Max-all",
"inherits": "fdm_filament_pla",
"from": "system",
"setting_id": "Nb1H9jKg8CPQXLVI",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"complete_print_exhaust_fan_speed": [
"0"
],
"cool_plate_temp": [
"45"
],
"cool_plate_temp_initial_layer": [
"45"
],
"during_print_exhaust_fan_speed": [
"0"
],
"eng_plate_temp": [
"50"
],
"eng_plate_temp_initial_layer": [
"50"
],
"filament_cost": [
"30"
],
"filament_deretraction_speed": [
"35"
],
"filament_diameter": [
"1.75"
],
"filament_flow_ratio": [
"0.95"
],
"filament_is_support": [
"0"
],
"filament_max_volumetric_speed": [
"23"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_retract_before_wipe": [
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_length": [
"1"
],
"filament_retraction_minimum_travel": [
"1"
],
"filament_retraction_speed": [
"35"
],
"filament_soluble": [
"0"
],
"filament_vendor": [
"Creality"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"2"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"45"
],
"nozzle_temperature_range_high": [
"240"
],
"required_nozzle_HRC": [
"0"
],
"slow_down_layer_time": [
"10"
],
"slow_down_min_speed": [
"20"
],
"textured_plate_temp": [
"55"
],
"textured_plate_temp_initial_layer": [
"45"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"activate_chamber_temp_control": "0",
"chamber_temperature": "0",
"cool_cds_fan_start_at_height": "0.5",
"cool_special_cds_fan_speed": "0",
"customized_plate_temp": "55",
"customized_plate_temp_initial_layer": "45",
"default_filament_colour": "\"\"",
"enable_overhang_bridge_fan": "1",
"enable_pressure_advance": "1",
"enable_special_area_additional_cooling_fan": "0",
"epoxy_resin_plate_temp": "55",
"epoxy_resin_plate_temp_initial_layer": "45",
"filament_cooling_final_speed": "3.4",
"filament_cooling_initial_speed": "2.2",
"filament_cooling_moves": "4",
"filament_load_time": "0",
"filament_loading_speed": "28",
"filament_loading_speed_start": "3",
"filament_multitool_ramming": "0",
"filament_multitool_ramming_flow": "10",
"filament_multitool_ramming_volume": "10",
"filament_notes": "\"\"",
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
"filament_retract_lift_above": "nil",
"filament_retract_lift_below": "nil",
"filament_retract_lift_enforce": "nil",
"filament_shrink": "100%",
"filament_shrinkage_compensation_z": "100%",
"filament_toolchange_delay": "0",
"filament_unload_time": "0",
"filament_unloading_speed": "90",
"filament_unloading_speed_start": "100",
"material_flow_dependent_temperature": "0",
"material_flow_temp_graph": "[[1.0,190],[1.5,220]]",
"pressure_advance": "0.048",
"support_material_interface_fan_speed": "-1",
"compatible_printers": [
"Creality Ender-5 Max 0.4 nozzle",
"Creality Ender-5 Max 0.6 nozzle",
"Creality Ender-5 Max 0.8 nozzle"
]
}
@@ -1,163 +0,0 @@
{
"type": "filament",
"name": "Hyper PLA-CF @Ender-5 Max-all",
"inherits": "fdm_filament_pla",
"from": "system",
"setting_id": "pW3AHx1VemLWSa7q",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"complete_print_exhaust_fan_speed": [
"80"
],
"cool_plate_temp": [
"45"
],
"cool_plate_temp_initial_layer": [
"45"
],
"during_print_exhaust_fan_speed": [
"60"
],
"eng_plate_temp": [
"50"
],
"eng_plate_temp_initial_layer": [
"50"
],
"filament_cost": [
"32"
],
"filament_density": [
"1.27"
],
"filament_deretraction_speed": [
"35"
],
"filament_diameter": [
"1.75"
],
"filament_flow_ratio": [
"0.95"
],
"filament_is_support": [
"0"
],
"filament_max_volumetric_speed": [
"23"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_retract_before_wipe": [
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_length": [
"nil"
],
"filament_retraction_minimum_travel": [
"1"
],
"filament_retraction_speed": [
"35"
],
"filament_soluble": [
"0"
],
"filament_type": [
"PLA-CF"
],
"filament_vendor": [
"Creality"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"2"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"50"
],
"hot_plate_temp_initial_layer": [
"50"
],
"nozzle_temperature_range_high": [
"240"
],
"required_nozzle_HRC": [
"0"
],
"slow_down_layer_time": [
"10"
],
"slow_down_min_speed": [
"20"
],
"textured_plate_temp": [
"50"
],
"textured_plate_temp_initial_layer": [
"50"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"activate_chamber_temp_control": "0",
"chamber_temperature": "35",
"cool_cds_fan_start_at_height": "0.5",
"cool_special_cds_fan_speed": "0",
"customized_plate_temp": "50",
"customized_plate_temp_initial_layer": "50",
"default_filament_colour": "\"\"",
"enable_overhang_bridge_fan": "1",
"enable_pressure_advance": "1",
"enable_special_area_additional_cooling_fan": "0",
"epoxy_resin_plate_temp": "50",
"epoxy_resin_plate_temp_initial_layer": "50",
"filament_cooling_final_speed": "3.4",
"filament_cooling_initial_speed": "2.2",
"filament_cooling_moves": "4",
"filament_load_time": "0",
"filament_loading_speed": "28",
"filament_loading_speed_start": "3",
"filament_multitool_ramming": "0",
"filament_multitool_ramming_flow": "10",
"filament_multitool_ramming_volume": "10",
"filament_notes": "\"\"",
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
"filament_retract_lift_above": "nil",
"filament_retract_lift_below": "nil",
"filament_retract_lift_enforce": "nil",
"filament_shrink": "100%",
"filament_toolchange_delay": "0",
"filament_unload_time": "0",
"filament_unloading_speed": "90",
"filament_unloading_speed_start": "100",
"material_flow_dependent_temperature": "0",
"material_flow_temp_graph": "[[1.0,190],[1.2,220]]",
"pressure_advance": "0.04",
"support_material_interface_fan_speed": "-1",
"compatible_printers": [
"Creality Ender-5 Max 0.4 nozzle"
]
}
File diff suppressed because it is too large Load Diff
@@ -1,91 +0,0 @@
{
"type": "filament",
"name": "fdm_filament_paht",
"inherits": "fdm_filament_common",
"from": "system",
"instantiation": "false",
"filament_max_volumetric_speed": [
"12"
],
"filament_type": [
"PAHT"
],
"filament_density": [
"1.24"
],
"filament_cost": [
"0"
],
"cool_plate_temp": [
"35"
],
"eng_plate_temp": [
"0"
],
"textured_plate_temp": [
"60"
],
"cool_plate_temp_initial_layer": [
"35"
],
"eng_plate_temp_initial_layer": [
"0"
],
"textured_plate_temp_initial_layer": [
"60"
],
"nozzle_temperature_initial_layer": [
"220"
],
"reduce_fan_stop_start_freq": [
"1"
],
"overhang_fan_threshold": [
"50%"
],
"close_fan_the_first_x_layers": [
"1"
],
"nozzle_temperature": [
"220"
],
"temperature_vitrification": [
"45"
],
"nozzle_temperature_range_low": [
"190"
],
"nozzle_temperature_range_high": [
"240"
],
"slow_down_min_speed": [
"20"
],
"additional_cooling_fan_speed": [
"0"
],
"fan_cooling_layer_time": [
"80"
],
"fan_min_speed": [
"50"
],
"hot_plate_temp": [
"60"
],
"hot_plate_temp_initial_layer": [
"60"
],
"slow_down_layer_time": [
"8"
],
"filament_start_gcode": [
"; Filament start gcode\n"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_vendor": [
"Generic"
]
}
@@ -1,15 +1,14 @@
{
"type": "process",
"name": "0.30mm Standard @Elegoo Giga 0.6 nozzle",
"renamed_from": "0.30mm Standard @EOS Giga 0.6 nozzle",
"inherits": "fdm_process_elegoo_06030",
"from": "system",
"setting_id": "mMP6cZhv9TYjYlEh",
"instantiation": "true",
"renamed_from": "0.30mm Standard @EOS Giga 0.6 nozzle",
"default_acceleration": "3000",
"filename_format": "EOGiga1_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode",
"initial_layer_acceleration": "1000",
"is_custom_defined": "0",
"make_overhang_printable_angle": "90",
"outer_wall_acceleration": "2000",
"resolution": "0.05",
@@ -24,7 +24,6 @@
"sparse_infill_speed": "100",
"inner_wall_speed": "100",
"internal_solid_infill_speed": "100",
"is_custom_defined": "0",
"outer_wall_speed": "60",
"top_surface_speed": "80"
}
+16 -16
View File
@@ -244,26 +244,10 @@
"name": "Generic PLA @FLSun S1",
"sub_path": "filament/Generic PLA @FLSun S1.json"
},
{
"name": "Generic PLA High Speed @FLSun S1",
"sub_path": "filament/Generic PLA High Speed @FLSun S1.json"
},
{
"name": "Generic PLA Silk @FLSun S1",
"sub_path": "filament/Generic PLA Silk @FLSun S1.json"
},
{
"name": "Generic PLA @FLSun T1",
"sub_path": "filament/Generic PLA @FLSun T1.json"
},
{
"name": "Generic PLA High Speed @FLSun T1",
"sub_path": "filament/Generic PLA High Speed @FLSun T1.json"
},
{
"name": "Generic PLA Silk @FLSun T1",
"sub_path": "filament/Generic PLA Silk @FLSun T1.json"
},
{
"name": "Generic TPU @FLSun S1",
"sub_path": "filament/Generic TPU @FLSun S1.json"
@@ -271,6 +255,22 @@
{
"name": "Generic TPU @FLSun T1",
"sub_path": "filament/Generic TPU @FLSun T1.json"
},
{
"name": "Generic PLA High Speed @FLSun S1",
"sub_path": "filament/Generic PLA High Speed @FLSun S1.json"
},
{
"name": "Generic PLA High Speed @FLSun T1",
"sub_path": "filament/Generic PLA High Speed @FLSun T1.json"
},
{
"name": "Generic PLA Silk @FLSun S1",
"sub_path": "filament/Generic PLA Silk @FLSun S1.json"
},
{
"name": "Generic PLA Silk @FLSun T1",
"sub_path": "filament/Generic PLA Silk @FLSun T1.json"
}
],
"machine_list": [
+374 -374
View File
@@ -439,22 +439,6 @@
"name": "0.14mm Standard @FF AD5X 0.25 nozzle",
"sub_path": "process/0.14mm Standard @FF AD5X 0.25 nozzle.json"
},
{
"name": "0.08mm Standard @FF C5 0.25 nozzle",
"sub_path": "process/0.08mm Standard @FF C5 0.25 nozzle.json"
},
{
"name": "0.10mm Standard @FF C5 0.25 nozzle",
"sub_path": "process/0.10mm Standard @FF C5 0.25 nozzle.json"
},
{
"name": "0.12mm Standard @FF C5 0.25 nozzle",
"sub_path": "process/0.12mm Standard @FF C5 0.25 nozzle.json"
},
{
"name": "0.14mm Standard @FF C5 0.25 nozzle",
"sub_path": "process/0.14mm Standard @FF C5 0.25 nozzle.json"
},
{
"name": "0.14mm Standard @Flashforge AD5M 0.25 Nozzle",
"sub_path": "process/0.14mm Standard @Flashforge AD5M 0.25 Nozzle.json"
@@ -527,6 +511,22 @@
"name": "0.42mm Draft @FF AD5X 0.6 nozzle",
"sub_path": "process/0.42mm Draft @FF AD5X 0.6 nozzle.json"
},
{
"name": "0.08mm Standard @FF C5 0.25 nozzle",
"sub_path": "process/0.08mm Standard @FF C5 0.25 nozzle.json"
},
{
"name": "0.10mm Standard @FF C5 0.25 nozzle",
"sub_path": "process/0.10mm Standard @FF C5 0.25 nozzle.json"
},
{
"name": "0.12mm Standard @FF C5 0.25 nozzle",
"sub_path": "process/0.12mm Standard @FF C5 0.25 nozzle.json"
},
{
"name": "0.14mm Standard @FF C5 0.25 nozzle",
"sub_path": "process/0.14mm Standard @FF C5 0.25 nozzle.json"
},
{
"name": "0.24mm Fine @FF AD5X 0.8 nozzle",
"sub_path": "process/0.24mm Fine @FF AD5X 0.8 nozzle.json"
@@ -573,26 +573,30 @@
"name": "Generic ASA @Flashforge",
"sub_path": "filament/Generic ASA @Flashforge.json"
},
{
"name": "Generic PETG @Flashforge",
"sub_path": "filament/Generic PETG @Flashforge.json"
},
{
"name": "Generic PETG-CF10 @Flashforge",
"sub_path": "filament/Generic PETG-CF10 @Flashforge.json"
},
{
"name": "Flashforge PETG",
"sub_path": "filament/Flashforge/Flashforge PETG @FF AD3.json"
},
{
"name": "Generic PETG @Flashforge",
"sub_path": "filament/Generic PETG @Flashforge.json"
},
{
"name": "Generic PETG @Flashforge Artemis",
"sub_path": "filament/Flashforge Generic PETG @Flashforge Artemis.json"
},
{
"name": "Generic PETG-CF10 @Flashforge",
"sub_path": "filament/Generic PETG-CF10 @Flashforge.json"
},
{
"name": "SUNLU PETG @base",
"sub_path": "filament/SUNLU/SUNLU PETG @base.json"
},
{
"name": "Flashforge PLA",
"sub_path": "filament/Flashforge/Flashforge PLA @FF AD3.json"
},
{
"name": "Generic HS PLA @Flashforge",
"sub_path": "filament/Generic HS PLA @Flashforge.json"
@@ -609,10 +613,6 @@
"name": "Generic PLA-Silk @Flashforge",
"sub_path": "filament/Generic PLA-Silk @Flashforge.json"
},
{
"name": "Flashforge PLA",
"sub_path": "filament/Flashforge/Flashforge PLA @FF AD3.json"
},
{
"name": "SUNLU PLA Marble @base",
"sub_path": "filament/SUNLU/SUNLU PLA Marble @base.json"
@@ -709,6 +709,10 @@
"name": "Generic ABS @FF AD5M 0.25 Nozzle",
"sub_path": "filament/Generic ABS @FF AD5M 0.25 Nozzle.json"
},
{
"name": "Generic ABS @Flashforge AD4",
"sub_path": "filament/Generic ABS @Flashforge AD4.json"
},
{
"name": "Generic ABS @Flashforge G3U",
"sub_path": "filament/Generic ABS @Flashforge G3U.json"
@@ -729,10 +733,6 @@
"name": "Generic HIPS @Flashforge G3U 0.6 Nozzle",
"sub_path": "filament/Generic HIPS @Flashforge G3U 0.6 Nozzle.json"
},
{
"name": "Generic ABS @Flashforge AD4",
"sub_path": "filament/Generic ABS @Flashforge AD4.json"
},
{
"name": "Flashforge ASA @FF AD5M 0.25 Nozzle",
"sub_path": "filament/Flashforge ASA @FF AD5M 0.25 Nozzle.json"
@@ -745,41 +745,13 @@
"name": "Generic ASA @FF AD5M 0.25 Nozzle",
"sub_path": "filament/Generic ASA @FF AD5M 0.25 Nozzle.json"
},
{
"name": "Generic ASA @Flashforge G3U 0.6 Nozzle",
"sub_path": "filament/Generic ASA @Flashforge G3U 0.6 Nozzle.json"
},
{
"name": "Generic ASA @Flashforge AD4",
"sub_path": "filament/Generic ASA @Flashforge AD4.json"
},
{
"name": "Generic PETG @FF AD5M 0.25 Nozzle",
"sub_path": "filament/Generic PETG @FF AD5M 0.25 Nozzle.json"
},
{
"name": "Generic PETG @Flashforge G3U",
"sub_path": "filament/Generic PETG @Flashforge G3U.json"
},
{
"name": "Generic PETG @Flashforge G3U 0.6 Nozzle",
"sub_path": "filament/Generic PETG @Flashforge G3U 0.6 Nozzle.json"
},
{
"name": "Generic PETG @Flashforge G3U 0.8 Nozzle",
"sub_path": "filament/Generic PETG @Flashforge G3U 0.8 Nozzle.json"
},
{
"name": "Generic PETG-CF @Flashforge G3U",
"sub_path": "filament/Generic PETG-CF @Flashforge G3U.json"
},
{
"name": "Generic PETG-CF @Flashforge G3U 0.6 Nozzle",
"sub_path": "filament/Generic PETG-CF @Flashforge G3U 0.6 Nozzle.json"
},
{
"name": "Generic PETG-CF @Flashforge G3U 0.8 Nozzle",
"sub_path": "filament/Generic PETG-CF @Flashforge G3U 0.8 Nozzle.json"
"name": "Generic ASA @Flashforge G3U 0.6 Nozzle",
"sub_path": "filament/Generic ASA @Flashforge G3U 0.6 Nozzle.json"
},
{
"name": "Flashforge HS PETG",
@@ -905,10 +877,38 @@
"name": "FusRock S-PAHT @G3U 0.6 Nozzle",
"sub_path": "filament/FusRock/FusRock S-PAHT @G3U 0.6 Nozzle.json"
},
{
"name": "Generic PETG @FF AD5M 0.25 Nozzle",
"sub_path": "filament/Generic PETG @FF AD5M 0.25 Nozzle.json"
},
{
"name": "Generic PETG @Flashforge AD4",
"sub_path": "filament/Generic PETG @Flashforge AD4.json"
},
{
"name": "Generic PETG @Flashforge G3U",
"sub_path": "filament/Generic PETG @Flashforge G3U.json"
},
{
"name": "Generic PETG @Flashforge G3U 0.6 Nozzle",
"sub_path": "filament/Generic PETG @Flashforge G3U 0.6 Nozzle.json"
},
{
"name": "Generic PETG @Flashforge G3U 0.8 Nozzle",
"sub_path": "filament/Generic PETG @Flashforge G3U 0.8 Nozzle.json"
},
{
"name": "Generic PETG-CF @Flashforge G3U",
"sub_path": "filament/Generic PETG-CF @Flashforge G3U.json"
},
{
"name": "Generic PETG-CF @Flashforge G3U 0.6 Nozzle",
"sub_path": "filament/Generic PETG-CF @Flashforge G3U 0.6 Nozzle.json"
},
{
"name": "Generic PETG-CF @Flashforge G3U 0.8 Nozzle",
"sub_path": "filament/Generic PETG-CF @Flashforge G3U 0.8 Nozzle.json"
},
{
"name": "Flashforge PETG-CF",
"sub_path": "filament/Flashforge PETG-CF.json"
@@ -945,10 +945,6 @@
"name": "SUNLU PETG @FF AD5M 0.8 Nozzle",
"sub_path": "filament/SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json"
},
{
"name": "Generic HS PLA @FF AD5M 0.25 Nozzle",
"sub_path": "filament/Generic HS PLA @FF AD5M 0.25 Nozzle.json"
},
{
"name": "Flashforge HIPS @FF G4",
"sub_path": "filament/Flashforge HIPS @FF G4.json"
@@ -1049,42 +1045,14 @@
"name": "Flashforge PLA-CF @FF G4P",
"sub_path": "filament/Flashforge PLA-CF @FF G4P.json"
},
{
"name": "Generic HS PLA @FF AD5M 0.25 Nozzle",
"sub_path": "filament/Generic HS PLA @FF AD5M 0.25 Nozzle.json"
},
{
"name": "Generic PLA High Speed @Flashforge AD4",
"sub_path": "filament/Generic PLA High Speed @Flashforge AD4.json"
},
{
"name": "Generic PLA @FF AD5M 0.25 Nozzle",
"sub_path": "filament/Generic PLA @FF AD5M 0.25 Nozzle.json"
},
{
"name": "Generic PLA @Flashforge G3U",
"sub_path": "filament/Generic PLA @Flashforge G3U.json"
},
{
"name": "Generic PLA @Flashforge G3U 0.6 Nozzle",
"sub_path": "filament/Generic PLA @Flashforge G3U 0.6 Nozzle.json"
},
{
"name": "Generic PLA @Flashforge G3U 0.8 Nozzle",
"sub_path": "filament/Generic PLA @Flashforge G3U 0.8 Nozzle.json"
},
{
"name": "Generic PLA-CF @Flashforge G3U",
"sub_path": "filament/Generic PLA-CF @Flashforge G3U.json"
},
{
"name": "Generic PLA-CF @Flashforge G3U 0.6 Nozzle",
"sub_path": "filament/Generic PLA-CF @Flashforge G3U 0.6 Nozzle.json"
},
{
"name": "Generic PLA-CF @Flashforge G3U 0.8 Nozzle",
"sub_path": "filament/Generic PLA-CF @Flashforge G3U 0.8 Nozzle.json"
},
{
"name": "Generic PVA @Flashforge",
"sub_path": "filament/Generic PVA @Flashforge.json"
},
{
"name": "Flashforge HS PLA",
"sub_path": "filament/Flashforge HS PLA.json"
@@ -1233,10 +1201,42 @@
"name": "Flashforge PLA Sparkle @FF AD5X 0.8 nozzle",
"sub_path": "filament/Flashforge PLA Sparkle @FF AD5X 0.8 nozzle.json"
},
{
"name": "Generic PLA @FF AD5M 0.25 Nozzle",
"sub_path": "filament/Generic PLA @FF AD5M 0.25 Nozzle.json"
},
{
"name": "Generic PLA @Flashforge AD4",
"sub_path": "filament/Generic PLA @Flashforge AD4.json"
},
{
"name": "Generic PLA @Flashforge G3U",
"sub_path": "filament/Generic PLA @Flashforge G3U.json"
},
{
"name": "Generic PLA @Flashforge G3U 0.6 Nozzle",
"sub_path": "filament/Generic PLA @Flashforge G3U 0.6 Nozzle.json"
},
{
"name": "Generic PLA @Flashforge G3U 0.8 Nozzle",
"sub_path": "filament/Generic PLA @Flashforge G3U 0.8 Nozzle.json"
},
{
"name": "Generic PLA-CF @Flashforge G3U",
"sub_path": "filament/Generic PLA-CF @Flashforge G3U.json"
},
{
"name": "Generic PLA-CF @Flashforge G3U 0.6 Nozzle",
"sub_path": "filament/Generic PLA-CF @Flashforge G3U 0.6 Nozzle.json"
},
{
"name": "Generic PLA-CF @Flashforge G3U 0.8 Nozzle",
"sub_path": "filament/Generic PLA-CF @Flashforge G3U 0.8 Nozzle.json"
},
{
"name": "Generic PVA @Flashforge",
"sub_path": "filament/Generic PVA @Flashforge.json"
},
{
"name": "Polymaker CoPA",
"sub_path": "filament/Polymaker/Polymaker CoPA.json"
@@ -1297,10 +1297,6 @@
"name": "Generic PLA-CF10 @Flashforge AD4",
"sub_path": "filament/Generic PLA-CF10 @Flashforge AD4.json"
},
{
"name": "Generic PLA-SILK @FF AD5M 0.25 Nozzle",
"sub_path": "filament/Generic PLA-SILK @FF AD5M 0.25 Nozzle.json"
},
{
"name": "Flashforge PLA Silk",
"sub_path": "filament/Flashforge PLA Silk.json"
@@ -1325,6 +1321,10 @@
"name": "Generic PLA Silk @Flashforge AD4",
"sub_path": "filament/Generic PLA Silk @Flashforge AD4.json"
},
{
"name": "Generic PLA-SILK @FF AD5M 0.25 Nozzle",
"sub_path": "filament/Generic PLA-SILK @FF AD5M 0.25 Nozzle.json"
},
{
"name": "SUNLU PLA Marble @FF AD3",
"sub_path": "filament/SUNLU/SUNLU PLA Marble @FF AD3.json"
@@ -1709,102 +1709,6 @@
"name": "Flashforge ASA Basic @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge ASA Basic @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge HS PETG @FF G4 0.6 HF nozzle",
"sub_path": "filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json"
},
{
"name": "Flashforge HS PETG @FF G4 0.6 nozzle",
"sub_path": "filament/Flashforge HS PETG @FF G4 0.6 nozzle.json"
},
{
"name": "Flashforge HS PETG @FF G4 0.8 HF nozzle",
"sub_path": "filament/Flashforge HS PETG @FF G4 0.8 HF nozzle.json"
},
{
"name": "Flashforge HS PETG @FF G4P 0.6 HF nozzle",
"sub_path": "filament/Flashforge HS PETG @FF G4P 0.6 HF nozzle.json"
},
{
"name": "Flashforge HS PETG @FF G4P 0.6 nozzle",
"sub_path": "filament/Flashforge HS PETG @FF G4P 0.6 nozzle.json"
},
{
"name": "Flashforge HS PETG @FF G4P 0.8 HF nozzle",
"sub_path": "filament/Flashforge HS PETG @FF G4P 0.8 HF nozzle.json"
},
{
"name": "Flashforge PETG Pro @FF G4 0.6 HF nozzle",
"sub_path": "filament/Flashforge PETG Pro @FF G4 0.6 HF nozzle.json"
},
{
"name": "Flashforge PETG Pro @FF G4 0.6 nozzle",
"sub_path": "filament/Flashforge PETG Pro @FF G4 0.6 nozzle.json"
},
{
"name": "Flashforge PETG Pro @FF G4 0.8 HF nozzle",
"sub_path": "filament/Flashforge PETG Pro @FF G4 0.8 HF nozzle.json"
},
{
"name": "Flashforge PETG Pro @FF G4P 0.6 HF nozzle",
"sub_path": "filament/Flashforge PETG Pro @FF G4P 0.6 HF nozzle.json"
},
{
"name": "Flashforge PETG Pro @FF G4P 0.6 nozzle",
"sub_path": "filament/Flashforge PETG Pro @FF G4P 0.6 nozzle.json"
},
{
"name": "Flashforge PETG Pro @FF G4P 0.8 HF nozzle",
"sub_path": "filament/Flashforge PETG Pro @FF G4P 0.8 HF nozzle.json"
},
{
"name": "Flashforge PETG Transparent @FF G4 0.6 HF nozzle",
"sub_path": "filament/Flashforge PETG Transparent @FF G4 0.6 HF nozzle.json"
},
{
"name": "Flashforge PETG Transparent @FF G4 0.6 nozzle",
"sub_path": "filament/Flashforge PETG Transparent @FF G4 0.6 nozzle.json"
},
{
"name": "Flashforge PETG Transparent @FF G4 0.8 HF nozzle",
"sub_path": "filament/Flashforge PETG Transparent @FF G4 0.8 HF nozzle.json"
},
{
"name": "Flashforge PETG Transparent @FF G4P 0.6 HF nozzle",
"sub_path": "filament/Flashforge PETG Transparent @FF G4P 0.6 HF nozzle.json"
},
{
"name": "Flashforge PETG Transparent @FF G4P 0.6 nozzle",
"sub_path": "filament/Flashforge PETG Transparent @FF G4P 0.6 nozzle.json"
},
{
"name": "Flashforge PETG Transparent @FF G4P 0.8 HF nozzle",
"sub_path": "filament/Flashforge PETG Transparent @FF G4P 0.8 HF nozzle.json"
},
{
"name": "Flashforge TPU 65D @FF G4 0.6 HF nozzle",
"sub_path": "filament/Flashforge TPU 65D @FF G4 0.6 HF nozzle.json"
},
{
"name": "Flashforge TPU 65D @FF G4P 0.6 HF nozzle",
"sub_path": "filament/Flashforge TPU 65D @FF G4P 0.6 HF nozzle.json"
},
{
"name": "Flashforge TPU 95A @FF G4 0.6 HF nozzle",
"sub_path": "filament/Flashforge TPU 95A @FF G4 0.6 HF nozzle.json"
},
{
"name": "Flashforge TPU 95A @FF G4P 0.6 HF nozzle",
"sub_path": "filament/Flashforge TPU 95A @FF G4P 0.6 HF nozzle.json"
},
{
"name": "Flashforge PETG-CF @FF G4 0.6 nozzle",
"sub_path": "filament/Flashforge PETG-CF @FF G4 0.6 nozzle.json"
},
{
"name": "Flashforge PETG-CF @FF G4P 0.6 nozzle",
"sub_path": "filament/Flashforge PETG-CF @FF G4P 0.6 nozzle.json"
},
{
"name": "Flashforge HS PETG @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge HS PETG @FF AD5M 0.25 nozzle.json"
@@ -2045,6 +1949,254 @@
"name": "Polymaker CoPA @FF G4P 0.8 HF nozzle",
"sub_path": "filament/Polymaker CoPA @FF G4P 0.8 HF nozzle.json"
},
{
"name": "Flashforge HS PETG @FF G4 0.6 HF nozzle",
"sub_path": "filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json"
},
{
"name": "Flashforge HS PETG @FF G4 0.6 nozzle",
"sub_path": "filament/Flashforge HS PETG @FF G4 0.6 nozzle.json"
},
{
"name": "Flashforge HS PETG @FF G4 0.8 HF nozzle",
"sub_path": "filament/Flashforge HS PETG @FF G4 0.8 HF nozzle.json"
},
{
"name": "Flashforge HS PETG @FF G4P 0.6 HF nozzle",
"sub_path": "filament/Flashforge HS PETG @FF G4P 0.6 HF nozzle.json"
},
{
"name": "Flashforge HS PETG @FF G4P 0.6 nozzle",
"sub_path": "filament/Flashforge HS PETG @FF G4P 0.6 nozzle.json"
},
{
"name": "Flashforge HS PETG @FF G4P 0.8 HF nozzle",
"sub_path": "filament/Flashforge HS PETG @FF G4P 0.8 HF nozzle.json"
},
{
"name": "Flashforge PETG Pro @FF G4 0.6 HF nozzle",
"sub_path": "filament/Flashforge PETG Pro @FF G4 0.6 HF nozzle.json"
},
{
"name": "Flashforge PETG Pro @FF G4 0.6 nozzle",
"sub_path": "filament/Flashforge PETG Pro @FF G4 0.6 nozzle.json"
},
{
"name": "Flashforge PETG Pro @FF G4 0.8 HF nozzle",
"sub_path": "filament/Flashforge PETG Pro @FF G4 0.8 HF nozzle.json"
},
{
"name": "Flashforge PETG Pro @FF G4P 0.6 HF nozzle",
"sub_path": "filament/Flashforge PETG Pro @FF G4P 0.6 HF nozzle.json"
},
{
"name": "Flashforge PETG Pro @FF G4P 0.6 nozzle",
"sub_path": "filament/Flashforge PETG Pro @FF G4P 0.6 nozzle.json"
},
{
"name": "Flashforge PETG Pro @FF G4P 0.8 HF nozzle",
"sub_path": "filament/Flashforge PETG Pro @FF G4P 0.8 HF nozzle.json"
},
{
"name": "Flashforge PETG Transparent @FF G4 0.6 HF nozzle",
"sub_path": "filament/Flashforge PETG Transparent @FF G4 0.6 HF nozzle.json"
},
{
"name": "Flashforge PETG Transparent @FF G4 0.6 nozzle",
"sub_path": "filament/Flashforge PETG Transparent @FF G4 0.6 nozzle.json"
},
{
"name": "Flashforge PETG Transparent @FF G4 0.8 HF nozzle",
"sub_path": "filament/Flashforge PETG Transparent @FF G4 0.8 HF nozzle.json"
},
{
"name": "Flashforge PETG Transparent @FF G4P 0.6 HF nozzle",
"sub_path": "filament/Flashforge PETG Transparent @FF G4P 0.6 HF nozzle.json"
},
{
"name": "Flashforge PETG Transparent @FF G4P 0.6 nozzle",
"sub_path": "filament/Flashforge PETG Transparent @FF G4P 0.6 nozzle.json"
},
{
"name": "Flashforge PETG Transparent @FF G4P 0.8 HF nozzle",
"sub_path": "filament/Flashforge PETG Transparent @FF G4P 0.8 HF nozzle.json"
},
{
"name": "Flashforge TPU 65D @FF G4 0.6 HF nozzle",
"sub_path": "filament/Flashforge TPU 65D @FF G4 0.6 HF nozzle.json"
},
{
"name": "Flashforge TPU 65D @FF G4P 0.6 HF nozzle",
"sub_path": "filament/Flashforge TPU 65D @FF G4P 0.6 HF nozzle.json"
},
{
"name": "Flashforge TPU 95A @FF G4 0.6 HF nozzle",
"sub_path": "filament/Flashforge TPU 95A @FF G4 0.6 HF nozzle.json"
},
{
"name": "Flashforge TPU 95A @FF G4P 0.6 HF nozzle",
"sub_path": "filament/Flashforge TPU 95A @FF G4P 0.6 HF nozzle.json"
},
{
"name": "Flashforge PETG-CF @FF G4 0.6 nozzle",
"sub_path": "filament/Flashforge PETG-CF @FF G4 0.6 nozzle.json"
},
{
"name": "Flashforge PETG-CF @FF G4P 0.6 nozzle",
"sub_path": "filament/Flashforge PETG-CF @FF G4P 0.6 nozzle.json"
},
{
"name": "Flashforge HS PLA @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge HS PLA @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge HS PLA @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge HS PLA @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge HS PLA @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Basic @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Basic @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Basic @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Basic @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Basic @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Basic @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Basic @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Color Change @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Color Change @FF AD5M 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Color Change @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Color Change @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Color Change @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Color Change @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Color Change @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Color Change @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Galaxy @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Galaxy @FF AD5M 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Galaxy @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Galaxy @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Galaxy @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Galaxy @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Galaxy @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Galaxy @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Luminous @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Luminous @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Luminous @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Luminous @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Luminous @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Luminous @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Luminous @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Matte @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Matte @FF AD5M 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Matte @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Matte @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Matte @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Matte @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Matte @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Matte @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Metal @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Metal @FF AD5M 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Metal @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Metal @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Metal @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Metal @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Metal @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Metal @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Pro @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Pro @FF AD5M 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Pro @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Pro @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Pro @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Pro @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Pro @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Pro @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Silk @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Silk @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Silk @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Silk @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Silk @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Silk @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Sparkle @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Sparkle @FF AD5M 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Sparkle @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Sparkle @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Sparkle @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Sparkle @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Sparkle @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Sparkle @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge HS PLA @FF G4 0.6 HF nozzle",
"sub_path": "filament/Flashforge HS PLA @FF G4 0.6 HF nozzle.json"
@@ -2341,158 +2493,6 @@
"name": "Flashforge PLA-CF @FF G4P 0.6 nozzle",
"sub_path": "filament/Flashforge PLA-CF @FF G4P 0.6 nozzle.json"
},
{
"name": "Flashforge HS PLA @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge HS PLA @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge HS PLA @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge HS PLA @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge HS PLA @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Basic @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Basic @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Basic @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Basic @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Basic @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Basic @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Basic @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Color Change @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Color Change @FF AD5M 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Color Change @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Color Change @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Color Change @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Color Change @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Color Change @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Color Change @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Galaxy @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Galaxy @FF AD5M 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Galaxy @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Galaxy @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Galaxy @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Galaxy @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Galaxy @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Galaxy @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Luminous @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Luminous @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Luminous @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Luminous @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Luminous @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Luminous @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Luminous @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Matte @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Matte @FF AD5M 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Matte @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Matte @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Matte @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Matte @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Matte @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Matte @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Metal @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Metal @FF AD5M 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Metal @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Metal @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Metal @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Metal @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Metal @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Metal @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Pro @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Pro @FF AD5M 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Pro @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Pro @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Pro @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Pro @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Pro @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Pro @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Silk @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Silk @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Silk @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Silk @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Silk @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Silk @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Sparkle @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Sparkle @FF AD5M 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Sparkle @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Sparkle @FF AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Sparkle @FF G4 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Sparkle @FF G4 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Sparkle @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Sparkle @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Silk @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Silk @FF AD5M 0.25 nozzle.json"
@@ -2601,30 +2601,6 @@
"name": "Flashforge PETG-CF @FF C5P",
"sub_path": "filament/Flashforge PETG-CF @FF C5P.json"
},
{
"name": "Flashforge PLA Matte @FF C5",
"sub_path": "filament/Flashforge PLA Matte @FF C5.json"
},
{
"name": "Flashforge PLA Matte @FF C5P",
"sub_path": "filament/Flashforge PLA Matte @FF C5P.json"
},
{
"name": "Flashforge PLA Metal @FF C5",
"sub_path": "filament/Flashforge PLA Metal @FF C5.json"
},
{
"name": "Flashforge PLA Metal @FF C5P",
"sub_path": "filament/Flashforge PLA Metal @FF C5P.json"
},
{
"name": "Flashforge PLA Pro @FF C5",
"sub_path": "filament/Flashforge PLA Pro @FF C5.json"
},
{
"name": "Flashforge PLA Pro @FF C5P",
"sub_path": "filament/Flashforge PLA Pro @FF C5P.json"
},
{
"name": "Flashforge PLA Basic @FF C5",
"sub_path": "filament/Flashforge PLA Basic @FF C5.json"
@@ -2657,6 +2633,30 @@
"name": "Flashforge PLA Luminous @FF C5P",
"sub_path": "filament/Flashforge PLA Luminous @FF C5P.json"
},
{
"name": "Flashforge PLA Matte @FF C5",
"sub_path": "filament/Flashforge PLA Matte @FF C5.json"
},
{
"name": "Flashforge PLA Matte @FF C5P",
"sub_path": "filament/Flashforge PLA Matte @FF C5P.json"
},
{
"name": "Flashforge PLA Metal @FF C5",
"sub_path": "filament/Flashforge PLA Metal @FF C5.json"
},
{
"name": "Flashforge PLA Metal @FF C5P",
"sub_path": "filament/Flashforge PLA Metal @FF C5P.json"
},
{
"name": "Flashforge PLA Pro @FF C5",
"sub_path": "filament/Flashforge PLA Pro @FF C5.json"
},
{
"name": "Flashforge PLA Pro @FF C5P",
"sub_path": "filament/Flashforge PLA Pro @FF C5P.json"
},
{
"name": "Flashforge PLA Silk @FF C5",
"sub_path": "filament/Flashforge PLA Silk @FF C5.json"
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "InfiMech",
"version": "02.04.00.03",
"version": "02.04.00.04",
"force_update": "1",
"description": "InfiMech configurations",
"machine_model_list": [
@@ -476,11 +476,11 @@
"machine_list": [
{
"name": "fdm_machine_common",
"sub_path": "machine/HSN/fdm_machine_common.json"
"sub_path": "machine/fdm_machine_common.json"
},
{
"name": "fdm_klipper_common",
"sub_path": "machine/HSN/fdm_klipper_common.json"
"sub_path": "machine/fdm_klipper_common.json"
},
{
"name": "InfiMech EX 0.4 nozzle",
@@ -1,201 +0,0 @@
{
"type": "machine",
"name": "fdm_klipper_common",
"inherits": "fdm_machine_common",
"from": "system",
"instantiation": "false",
"gcode_flavor": "klipper",
"auxiliary_fan": "1",
"bed_exclude_area": [
"0x0"
],
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0",
"change_filament_gcode": "",
"cooling_tube_length": "5",
"cooling_tube_retraction": "91.5",
"default_filament_profile": [
"Generic PLA @InfiMech"
],
"default_print_profile": "0.20mm Standard @InfiMech TX",
"deretraction_speed": [
"30"
],
"enable_filament_ramming": "1",
"extra_loading_move": "-2",
"extruder_clearance_height_to_lid": "69",
"extruder_clearance_height_to_rod": "69",
"extruder_clearance_radius": "49",
"extruder_colour": [
"#FCE94F"
],
"extruder_offset": [
"0x0"
],
"fan_kickstart": "0",
"fan_speedup_overhangs": "1",
"fan_speedup_time": "0",
"high_current_on_filament_swap": "0",
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
"machine_end_gcode": "PRINT_END",
"machine_load_filament_time": "0",
"machine_max_acceleration_e": [
"5000",
"5000"
],
"machine_max_acceleration_extruding": [
"20000",
"20000"
],
"machine_max_acceleration_retracting": [
"5000",
"5000"
],
"machine_max_acceleration_travel": [
"20000",
"20000"
],
"machine_max_acceleration_x": [
"20000",
"20000"
],
"machine_max_acceleration_y": [
"20000",
"20000"
],
"machine_max_acceleration_z": [
"500",
"200"
],
"machine_max_jerk_e": [
"2.5",
"2.5"
],
"machine_max_jerk_x": [
"9",
"9"
],
"machine_max_jerk_y": [
"9",
"9"
],
"machine_max_jerk_z": [
"3",
"0.4"
],
"machine_max_speed_e": [
"30",
"25"
],
"machine_max_speed_x": [
"600",
"200"
],
"machine_max_speed_y": [
"600",
"200"
],
"machine_max_speed_z": [
"20",
"12"
],
"machine_min_extruding_rate": [
"0",
"0"
],
"machine_min_travel_rate": [
"0",
"0"
],
"machine_pause_gcode": "PAUSE",
"machine_start_gcode": ";v2.9.2-20240814;\n;wiping nozzle start\nM106 P3 S0\nM140 S[bed_temperature_initial_layer_single]\nclean_nozzle_position\n;wiping nozzle end\n;*************preheat nozzle and hotbed for Z_TILT_ADJUST*************\nM140 S[bed_temperature_initial_layer_single]\nM104 S130\nG1 X110 Y110 F10000 \nG4 P200\nprobe\nSET_KINEMATIC_POSITION Z=0 ;Z homing\nG1 Z5\nM190 S[bed_temperature_initial_layer_single]\nZ_TILT_ADJUST \n;*************Z_TILT_ADJUST end*************\nM140 S[bed_temperature_initial_layer_single] ;heat hotbed temp set by user\nG1 X5 Y5 F8000 \nG28 \nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 100,print_bed_max[0])} F6000 \nG1 Z0 F400\nM104 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user\nM106 S100 ;close head_nozzle fan\nG4 P3000\nM106 S255 ;close head_nozzle fan\nG4 P3000\nM106 S100 ;close head_nozzle fan\n;*************PRINT START*************\nM109 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user and wait \nM190 S[bed_temperature_initial_layer_single];heat bed temp set by user and wait \nM106 S0 ;close head_nozzle fan\nBED_MESH_CLEAR \nBED_MESH_PROFILE LOAD=default # bedmesh load\nG92 E0 ;Reset Extruder\n;G1 Z4.0 F200 ;Move Z Axis up\nG90 ;absolute position\n ; ; ; ; ; ; ; ; ; draw line along model\n;G92 E0 ;reset extruder\nG1 E3 F300 ;extrude filament\nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 100,print_bed_max[0])} F6000 \nG1 Z0.22 F600\nG1 X{first_layer_print_min[0]-1.5} Y{max(0, first_layer_print_min[1]-1.5)} F2000 E10\nG1 Z0.22 F600\nG1 X{min(first_layer_print_min[0] + 60,print_bed_max[0])} F1200 E12\n ; ; ; ; ; ; ; ; ;draw line along model end \nG4 P200\nG1 Z2\nG92 E0 ;Reset Extruder\nCLEAR_PAUSE\n;***********model start************\n",
"machine_unload_filament_time": "0",
"max_layer_height": [
"0.28"
],
"min_layer_height": [
"0.08"
],
"nozzle_diameter": [
"0.4"
],
"nozzle_hrc": "0",
"nozzle_type": "hardened_steel",
"nozzle_volume": "151.32",
"parking_pos_retraction": "92",
"print_host_webui": "",
"printable_area": [
"0x0",
"220x0",
"220x220",
"0x220"
],
"printable_height": "250",
"printer_model": "Generic Klipper Printer",
"printer_notes": "",
"printer_settings_id": "InfiMech TX 0.4 nozzle",
"printer_technology": "FFF",
"printer_variant": "0.4",
"printhost_apikey": "",
"printhost_authorization_type": "key",
"printhost_cafile": "",
"printhost_password": "",
"printhost_port": "",
"printhost_ssl_ignore_revoke": "0",
"printhost_user": "",
"purge_in_prime_tower": "1",
"retract_before_wipe": [
"0%"
],
"retract_length_toolchange": [
"0"
],
"retract_lift_above": [
"0"
],
"retract_lift_below": [
"249"
],
"retract_lift_enforce": [
"All Surfaces"
],
"retract_restart_extra": [
"0"
],
"retract_restart_extra_toolchange": [
"0"
],
"retract_when_changing_layer": [
"1"
],
"retraction_length": [
"0.5"
],
"retraction_minimum_travel": [
"1"
],
"retraction_speed": [
"30"
],
"scan_first_layer": "0",
"silent_mode": "0",
"single_extruder_multi_material": "1",
"template_custom_gcode": "",
"thumbnails": [
"300x300"
],
"upward_compatible_machine": [],
"use_firmware_retraction": "0",
"use_relative_e_distances": "1",
"wipe": [
"1"
],
"wipe_distance": [
"2"
],
"z_hop": [
"0.4"
],
"z_hop_types": [
"Normal Lift"
]
}
@@ -1,197 +0,0 @@
{
"type": "machine",
"name": "fdm_machine_common",
"from": "system",
"instantiation": "false",
"printer_technology": "FFF",
"gcode_flavor": "klipper",
"auxiliary_fan": "1",
"bed_exclude_area": [
"0x0"
],
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0",
"change_filament_gcode": "",
"cooling_tube_length": "5",
"cooling_tube_retraction": "91.5",
"default_filament_profile": [
"Generic PLA @InfiMech"
],
"default_print_profile": "0.20mm Standard @InfiMech TX",
"deretraction_speed": [
"30"
],
"enable_filament_ramming": "1",
"extra_loading_move": "-2",
"extruder_clearance_height_to_lid": "69",
"extruder_clearance_height_to_rod": "69",
"extruder_clearance_radius": "49",
"extruder_colour": [
"#FCE94F"
],
"extruder_offset": [
"0x0"
],
"fan_kickstart": "0",
"fan_speedup_overhangs": "1",
"fan_speedup_time": "0",
"high_current_on_filament_swap": "0",
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
"machine_end_gcode": "PRINT_END",
"machine_load_filament_time": "0",
"machine_max_acceleration_e": [
"5000",
"5000"
],
"machine_max_acceleration_extruding": [
"20000",
"20000"
],
"machine_max_acceleration_retracting": [
"5000",
"5000"
],
"machine_max_acceleration_travel": [
"9000",
"9000"
],
"machine_max_acceleration_x": [
"20000",
"20000"
],
"machine_max_acceleration_y": [
"20000",
"20000"
],
"machine_max_acceleration_z": [
"500",
"200"
],
"machine_max_jerk_e": [
"2.5",
"2.5"
],
"machine_max_jerk_x": [
"9",
"9"
],
"machine_max_jerk_y": [
"9",
"9"
],
"machine_max_jerk_z": [
"3",
"0.4"
],
"machine_max_speed_e": [
"30",
"25"
],
"machine_max_speed_x": [
"600",
"200"
],
"machine_max_speed_y": [
"600",
"200"
],
"machine_max_speed_z": [
"20",
"12"
],
"machine_min_extruding_rate": [
"0",
"0"
],
"machine_min_travel_rate": [
"0",
"0"
],
"machine_pause_gcode": "PAUSE",
"machine_start_gcode": ";v2.9.2-20240814;\n;wiping nozzle start\nM106 P3 S0\nM140 S[bed_temperature_initial_layer_single]\nclean_nozzle_position\n;wiping nozzle end\n;*************preheat nozzle and hotbed for Z_TILT_ADJUST*************\nM140 S[bed_temperature_initial_layer_single]\nM104 S130\nG1 X110 Y110 F10000 \nG4 P200\nprobe\nSET_KINEMATIC_POSITION Z=0 ;Z homing\nG1 Z5\nM190 S[bed_temperature_initial_layer_single]\nZ_TILT_ADJUST \n;*************Z_TILT_ADJUST end*************\nM140 S[bed_temperature_initial_layer_single] ;heat hotbed temp set by user\nG1 X5 Y5 F8000 \nG28 \nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 100,print_bed_max[0])} F6000 \nG1 Z0 F400\nM104 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user\nM106 S100 ;close head_nozzle fan\nG4 P3000\nM106 S255 ;close head_nozzle fan\nG4 P3000\nM106 S100 ;close head_nozzle fan\n;*************PRINT START*************\nM109 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user and wait \nM190 S[bed_temperature_initial_layer_single];heat bed temp set by user and wait \nM106 S0 ;close head_nozzle fan\nBED_MESH_CLEAR \nBED_MESH_PROFILE LOAD=default # bedmesh load\nG92 E0 ;Reset Extruder\n;G1 Z4.0 F200 ;Move Z Axis up\nG90 ;absolute position\n ; ; ; ; ; ; ; ; ; draw line along model\n;G92 E0 ;reset extruder\nG1 E3 F300 ;extrude filament\nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 100,print_bed_max[0])} F6000 \nG1 Z0.22 F600\nG1 X{first_layer_print_min[0]-1.5} Y{max(0, first_layer_print_min[1]-1.5)} F2000 E10\nG1 Z0.22 F600\nG1 X{min(first_layer_print_min[0] + 60,print_bed_max[0])} F1200 E12\n ; ; ; ; ; ; ; ; ;draw line along model end \nG4 P200\nG1 Z2\nG92 E0 ;Reset Extruder\nCLEAR_PAUSE\n;***********model start************\n",
"machine_unload_filament_time": "0",
"max_layer_height": [
"0.28"
],
"min_layer_height": [
"0.08"
],
"nozzle_hrc": "0",
"nozzle_type": "hardened_steel",
"nozzle_volume": "151.32",
"parking_pos_retraction": "92",
"print_host_webui": "",
"printable_area": [
"0x0",
"220x0",
"220x220",
"0x220"
],
"printable_height": "250",
"printer_model": "Generic Klipper Printer",
"printer_notes": "",
"printer_settings_id": "InfiMech TX 0.4 nozzle",
"printer_variant": "0.4",
"printhost_apikey": "",
"printhost_authorization_type": "key",
"printhost_cafile": "",
"printhost_password": "",
"printhost_port": "",
"printhost_ssl_ignore_revoke": "0",
"printhost_user": "",
"purge_in_prime_tower": "1",
"retract_before_wipe": [
"0%"
],
"retract_length_toolchange": [
"0"
],
"retract_lift_above": [
"0"
],
"retract_lift_below": [
"249"
],
"retract_lift_enforce": [
"All Surfaces"
],
"retract_restart_extra": [
"0"
],
"retract_restart_extra_toolchange": [
"0"
],
"retract_when_changing_layer": [
"1"
],
"retraction_length": [
"0.5"
],
"retraction_minimum_travel": [
"1"
],
"retraction_speed": [
"30"
],
"scan_first_layer": "0",
"silent_mode": "0",
"single_extruder_multi_material": "1",
"template_custom_gcode": "",
"thumbnails": [
"300x300"
],
"upward_compatible_machine": [],
"use_firmware_retraction": "0",
"use_relative_e_distances": "1",
"wipe": [
"1"
],
"wipe_distance": [
"2"
],
"z_hop": [
"0.4"
],
"z_hop_types": [
"Normal Lift"
]
}
@@ -119,7 +119,7 @@
"0.4"
],
"nozzle_hrc": "0",
"nozzle_type": "brass",
"nozzle_type": "hardened_steel",
"nozzle_volume": "151.32",
"parking_pos_retraction": "92",
"print_host_webui": "",
@@ -116,7 +116,7 @@
"0.08"
],
"nozzle_hrc": "0",
"nozzle_type": "brass",
"nozzle_type": "hardened_steel",
"nozzle_volume": "151.32",
"parking_pos_retraction": "92",
"print_host_webui": "",
+372 -372
View File
@@ -68,258 +68,6 @@
"name": "fdm_filament_pla",
"sub_path": "filament/base/fdm_filament_pla.json"
},
{
"name": "FilAr PLA @base",
"sub_path": "filament/FilAr/FilAr PLA @base.json"
},
{
"name": "FilAr PLA Bronce",
"sub_path": "filament/FilAr/FilAr PLA Bronce.json"
},
{
"name": "FilAr PLA Gris Plata",
"sub_path": "filament/FilAr/FilAr PLA Gris Plata.json"
},
{
"name": "FilAr PLA Cobre",
"sub_path": "filament/FilAr/FilAr PLA Cobre.json"
},
{
"name": "FilAr PLA Titanio",
"sub_path": "filament/FilAr/FilAr PLA Titanio.json"
},
{
"name": "FilAr PLA Tabaco",
"sub_path": "filament/FilAr/FilAr PLA Tabaco.json"
},
{
"name": "FilAr PLA Cafe con Leche",
"sub_path": "filament/FilAr/FilAr PLA Cafe con Leche.json"
},
{
"name": "FilAr PLA Manteca",
"sub_path": "filament/FilAr/FilAr PLA Manteca.json"
},
{
"name": "FilAr PLA Marron Oxido",
"sub_path": "filament/FilAr/FilAr PLA Marron Oxido.json"
},
{
"name": "FilAr PLA Carpincho",
"sub_path": "filament/FilAr/FilAr PLA Carpincho.json"
},
{
"name": "FilAr PLA Rosa Amaranto",
"sub_path": "filament/FilAr/FilAr PLA Rosa Amaranto.json"
},
{
"name": "FilAr PLA Rosa Flamenco",
"sub_path": "filament/FilAr/FilAr PLA Rosa Flamenco.json"
},
{
"name": "FilAr PLA Piel",
"sub_path": "filament/FilAr/FilAr PLA Piel.json"
},
{
"name": "FilAr PLA Verde FilAr",
"sub_path": "filament/FilAr/FilAr PLA Verde FilAr.json"
},
{
"name": "FilAr PLA Verde Manzana",
"sub_path": "filament/FilAr/FilAr PLA Verde Manzana.json"
},
{
"name": "FilAr PLA Verde Pixel",
"sub_path": "filament/FilAr/FilAr PLA Verde Pixel.json"
},
{
"name": "FilAr PLA Verde Oliva",
"sub_path": "filament/FilAr/FilAr PLA Verde Oliva.json"
},
{
"name": "FilAr PLA Blanco Antartida",
"sub_path": "filament/FilAr/FilAr PLA Blanco Antartida.json"
},
{
"name": "FilAr PLA Blanco Calido",
"sub_path": "filament/FilAr/FilAr PLA Blanco Calido.json"
},
{
"name": "FilAr PLA Negro Azabache",
"sub_path": "filament/FilAr/FilAr PLA Negro Azabache.json"
},
{
"name": "FilAr PLA Naranja Tigre",
"sub_path": "filament/FilAr/FilAr PLA Naranja Tigre.json"
},
{
"name": "FilAr PLA Rojo de Carreras",
"sub_path": "filament/FilAr/FilAr PLA Rojo de Carreras.json"
},
{
"name": "FilAr PLA Amarillo Lirio",
"sub_path": "filament/FilAr/FilAr PLA Amarillo Lirio.json"
},
{
"name": "FilAr PLA Violeta Jacaranda",
"sub_path": "filament/FilAr/FilAr PLA Violeta Jacaranda.json"
},
{
"name": "FilAr PLA Gris Pizarra",
"sub_path": "filament/FilAr/FilAr PLA Gris Pizarra.json"
},
{
"name": "FilAr PLA Gris Ceniza",
"sub_path": "filament/FilAr/FilAr PLA Gris Ceniza.json"
},
{
"name": "FilAr PLA Azul Francia",
"sub_path": "filament/FilAr/FilAr PLA Azul Francia.json"
},
{
"name": "FilAr PLA Celeste Cielo",
"sub_path": "filament/FilAr/FilAr PLA Celeste Cielo.json"
},
{
"name": "FilAr PLA Oro",
"sub_path": "filament/FilAr/FilAr PLA Oro.json"
},
{
"name": "FilAr PLA Dorado",
"sub_path": "filament/FilAr/FilAr PLA Dorado.json"
},
{
"name": "FilAr PLA-mate @base",
"sub_path": "filament/FilAr/FilAr PLA-mate @base.json"
},
{
"name": "FilAr PLA-mate Amarillo",
"sub_path": "filament/FilAr/FilAr PLA-mate Amarillo.json"
},
{
"name": "FilAr PLA-mate Azul",
"sub_path": "filament/FilAr/FilAr PLA-mate Azul.json"
},
{
"name": "FilAr PLA-mate Beige",
"sub_path": "filament/FilAr/FilAr PLA-mate Beige.json"
},
{
"name": "FilAr PLA-mate Blanco",
"sub_path": "filament/FilAr/FilAr PLA-mate Blanco.json"
},
{
"name": "FilAr PLA-mate Bordo",
"sub_path": "filament/FilAr/FilAr PLA-mate Bordo.json"
},
{
"name": "FilAr PLA-mate Celeste Cielo",
"sub_path": "filament/FilAr/FilAr PLA-mate Celeste Cielo.json"
},
{
"name": "FilAr PLA-mate Chocolate",
"sub_path": "filament/FilAr/FilAr PLA-mate Chocolate.json"
},
{
"name": "FilAr PLA-mate Gris",
"sub_path": "filament/FilAr/FilAr PLA-mate Gris.json"
},
{
"name": "FilAr PLA-mate Marron",
"sub_path": "filament/FilAr/FilAr PLA-mate Marron.json"
},
{
"name": "FilAr PLA-mate Naranja",
"sub_path": "filament/FilAr/FilAr PLA-mate Naranja.json"
},
{
"name": "FilAr PLA-mate Negro",
"sub_path": "filament/FilAr/FilAr PLA-mate Negro.json"
},
{
"name": "FilAr PLA-mate Piel",
"sub_path": "filament/FilAr/FilAr PLA-mate Piel.json"
},
{
"name": "FilAr PLA-mate Rojo",
"sub_path": "filament/FilAr/FilAr PLA-mate Rojo.json"
},
{
"name": "FilAr PLA-mate Rosa",
"sub_path": "filament/FilAr/FilAr PLA-mate Rosa.json"
},
{
"name": "FilAr PLA-mate Uva",
"sub_path": "filament/FilAr/FilAr PLA-mate Uva.json"
},
{
"name": "FilAr PLA-mate Verde",
"sub_path": "filament/FilAr/FilAr PLA-mate Verde.json"
},
{
"name": "FilAr PLA-mate Violeta",
"sub_path": "filament/FilAr/FilAr PLA-mate Violeta.json"
},
{
"name": "FilAr PETG @base",
"sub_path": "filament/FilAr/FilAr PETG @base.json"
},
{
"name": "FilAr PETG Amarillo Lima",
"sub_path": "filament/FilAr/FilAr PETG Amarillo Lima.json"
},
{
"name": "FilAr PETG Amarillo Radiante",
"sub_path": "filament/FilAr/FilAr PETG Amarillo Radiante.json"
},
{
"name": "FilAr PETG Azul Boreal",
"sub_path": "filament/FilAr/FilAr PETG Azul Boreal.json"
},
{
"name": "FilAr PETG Azul Francia",
"sub_path": "filament/FilAr/FilAr PETG Azul Francia.json"
},
{
"name": "FilAr PETG Azul Imperial",
"sub_path": "filament/FilAr/FilAr PETG Azul Imperial.json"
},
{
"name": "FilAr PETG Blanco Antartida",
"sub_path": "filament/FilAr/FilAr PETG Blanco Antartida.json"
},
{
"name": "FilAr PETG Cian",
"sub_path": "filament/FilAr/FilAr PETG Cian.json"
},
{
"name": "FilAr PETG Coral",
"sub_path": "filament/FilAr/FilAr PETG Coral.json"
},
{
"name": "FilAr PETG Cristal",
"sub_path": "filament/FilAr/FilAr PETG Cristal.json"
},
{
"name": "FilAr PETG Gris Ceniza",
"sub_path": "filament/FilAr/FilAr PETG Gris Ceniza.json"
},
{
"name": "FilAr PETG Gris Plata",
"sub_path": "filament/FilAr/FilAr PETG Gris Plata.json"
},
{
"name": "FilAr PETG Magenta",
"sub_path": "filament/FilAr/FilAr PETG Magenta.json"
},
{
"name": "FilAr PETG Negro Azabache",
"sub_path": "filament/FilAr/FilAr PETG Negro Azabache.json"
},
{
"name": "FilAr PETG Rojo Carmesi",
"sub_path": "filament/FilAr/FilAr PETG Rojo Carmesi.json"
},
{
"name": "fdm_filament_pp",
"sub_path": "filament/base/fdm_filament_pp.json"
@@ -588,10 +336,6 @@
"name": "Generic PE-CF @base",
"sub_path": "filament/Generic PE-CF @base.json"
},
{
"name": "Generic PE-CF @System",
"sub_path": "filament/Generic PE-CF @System.json"
},
{
"name": "AliZ PETG @base",
"sub_path": "filament/AliZ/AliZ PETG @base.json"
@@ -672,6 +416,10 @@
"name": "Fiberon PETG-rCF @base",
"sub_path": "filament/Polymaker/Fiberon PETG-rCF @base.json"
},
{
"name": "FilAr PETG @base",
"sub_path": "filament/FilAr/FilAr PETG @base.json"
},
{
"name": "Generic PETG @System",
"sub_path": "filament/Generic PETG @System.json"
@@ -680,18 +428,10 @@
"name": "Generic PETG HF @base",
"sub_path": "filament/Generic PETG HF @base.json"
},
{
"name": "Generic PETG HF @System",
"sub_path": "filament/Generic PETG HF @System.json"
},
{
"name": "Generic PETG-CF @base",
"sub_path": "filament/Generic PETG-CF @base.json"
},
{
"name": "Generic PETG-CF @System",
"sub_path": "filament/Generic PETG-CF @System.json"
},
{
"name": "GreenGate3D PETG @base",
"sub_path": "filament/GreenGate3D/GreenGate3D PETG @base.json"
@@ -868,6 +608,14 @@
"name": "FILL3D PLA Turbo @base",
"sub_path": "filament/FILL3D/FILL3D PLA Turbo @base.json"
},
{
"name": "FilAr PLA @base",
"sub_path": "filament/FilAr/FilAr PLA @base.json"
},
{
"name": "FilAr PLA-mate @base",
"sub_path": "filament/FilAr/FilAr PLA-mate @base.json"
},
{
"name": "Generic PLA @System",
"sub_path": "filament/Generic PLA @System.json"
@@ -880,10 +628,6 @@
"name": "Generic PLA Matte @base",
"sub_path": "filament/Generic PLA Matte @base.json"
},
{
"name": "Generic PLA Matte @System",
"sub_path": "filament/Generic PLA Matte @System.json"
},
{
"name": "Generic PLA-CF @System",
"sub_path": "filament/Generic PLA-CF @System.json"
@@ -1092,18 +836,10 @@
"name": "Generic PP-CF @base",
"sub_path": "filament/Generic PP-CF @base.json"
},
{
"name": "Generic PP-CF @System",
"sub_path": "filament/Generic PP-CF @System.json"
},
{
"name": "Generic PP-GF @base",
"sub_path": "filament/Generic PP-GF @base.json"
},
{
"name": "Generic PP-GF @System",
"sub_path": "filament/Generic PP-GF @System.json"
},
{
"name": "Bambu PPA-CF @base",
"sub_path": "filament/Bambu/Bambu PPA-CF @base.json"
@@ -1292,10 +1028,6 @@
"name": "Elegoo ASA-CF @base",
"sub_path": "filament/Elegoo/Elegoo ASA-CF @base.json"
},
{
"name": "Elegoo ASA-CF @System",
"sub_path": "filament/Elegoo/Elegoo ASA-CF @System.json"
},
{
"name": "Overture ASA @System",
"sub_path": "filament/Overture/Overture ASA @System.json"
@@ -1388,14 +1120,14 @@
"name": "Elegoo PC-FR @base",
"sub_path": "filament/Elegoo/Elegoo PC-FR @base.json"
},
{
"name": "Elegoo PC-FR @System",
"sub_path": "filament/Elegoo/Elegoo PC-FR @System.json"
},
{
"name": "COEX PCTG PRIME @System",
"sub_path": "filament/COEX/COEX PCTG PRIME @System.json"
},
{
"name": "Generic PE-CF @System",
"sub_path": "filament/Generic PE-CF @System.json"
},
{
"name": "AliZ PETG @System",
"sub_path": "filament/AliZ/AliZ PETG @System.json"
@@ -1448,10 +1180,6 @@
"name": "Elegoo PET-CF @base",
"sub_path": "filament/Elegoo/Elegoo PET-CF @base.json"
},
{
"name": "Elegoo PET-CF @System",
"sub_path": "filament/Elegoo/Elegoo PET-CF @System.json"
},
{
"name": "Elegoo PETG @System",
"sub_path": "filament/Elegoo/Elegoo PETG @System.json"
@@ -1460,50 +1188,26 @@
"name": "Elegoo PETG HF @base",
"sub_path": "filament/Elegoo/Elegoo PETG HF @base.json"
},
{
"name": "Elegoo PETG HF @System",
"sub_path": "filament/Elegoo/Elegoo PETG HF @System.json"
},
{
"name": "Elegoo PETG PRO @base",
"sub_path": "filament/Elegoo/Elegoo PETG PRO @base.json"
},
{
"name": "Elegoo PETG PRO @System",
"sub_path": "filament/Elegoo/Elegoo PETG PRO @System.json"
},
{
"name": "Elegoo PETG Translucent @base",
"sub_path": "filament/Elegoo/Elegoo PETG Translucent @base.json"
},
{
"name": "Elegoo PETG Translucent @System",
"sub_path": "filament/Elegoo/Elegoo PETG Translucent @System.json"
},
{
"name": "Elegoo PETG-CF @base",
"sub_path": "filament/Elegoo/Elegoo PETG-CF @base.json"
},
{
"name": "Elegoo PETG-CF @System",
"sub_path": "filament/Elegoo/Elegoo PETG-CF @System.json"
},
{
"name": "Elegoo PETG-GF @base",
"sub_path": "filament/Elegoo/Elegoo PETG-GF @base.json"
},
{
"name": "Elegoo PETG-GF @System",
"sub_path": "filament/Elegoo/Elegoo PETG-GF @System.json"
},
{
"name": "Elegoo Rapid PETG @base",
"sub_path": "filament/Elegoo/Elegoo Rapid PETG @base.json"
},
{
"name": "Elegoo Rapid PETG @System",
"sub_path": "filament/Elegoo/Elegoo Rapid PETG @System.json"
},
{
"name": "FDplast PETG @System",
"sub_path": "filament/FDplast/FDplast PETG @System.json"
@@ -1528,6 +1232,70 @@
"name": "Fiberon PETG-rCF @System",
"sub_path": "filament/Polymaker/Fiberon PETG-rCF @System.json"
},
{
"name": "FilAr PETG Amarillo Lima",
"sub_path": "filament/FilAr/FilAr PETG Amarillo Lima.json"
},
{
"name": "FilAr PETG Amarillo Radiante",
"sub_path": "filament/FilAr/FilAr PETG Amarillo Radiante.json"
},
{
"name": "FilAr PETG Azul Boreal",
"sub_path": "filament/FilAr/FilAr PETG Azul Boreal.json"
},
{
"name": "FilAr PETG Azul Francia",
"sub_path": "filament/FilAr/FilAr PETG Azul Francia.json"
},
{
"name": "FilAr PETG Azul Imperial",
"sub_path": "filament/FilAr/FilAr PETG Azul Imperial.json"
},
{
"name": "FilAr PETG Blanco Antartida",
"sub_path": "filament/FilAr/FilAr PETG Blanco Antartida.json"
},
{
"name": "FilAr PETG Cian",
"sub_path": "filament/FilAr/FilAr PETG Cian.json"
},
{
"name": "FilAr PETG Coral",
"sub_path": "filament/FilAr/FilAr PETG Coral.json"
},
{
"name": "FilAr PETG Cristal",
"sub_path": "filament/FilAr/FilAr PETG Cristal.json"
},
{
"name": "FilAr PETG Gris Ceniza",
"sub_path": "filament/FilAr/FilAr PETG Gris Ceniza.json"
},
{
"name": "FilAr PETG Gris Plata",
"sub_path": "filament/FilAr/FilAr PETG Gris Plata.json"
},
{
"name": "FilAr PETG Magenta",
"sub_path": "filament/FilAr/FilAr PETG Magenta.json"
},
{
"name": "FilAr PETG Negro Azabache",
"sub_path": "filament/FilAr/FilAr PETG Negro Azabache.json"
},
{
"name": "FilAr PETG Rojo Carmesi",
"sub_path": "filament/FilAr/FilAr PETG Rojo Carmesi.json"
},
{
"name": "Generic PETG HF @System",
"sub_path": "filament/Generic PETG HF @System.json"
},
{
"name": "Generic PETG-CF @System",
"sub_path": "filament/Generic PETG-CF @System.json"
},
{
"name": "GreenGate3D PETG @System",
"sub_path": "filament/GreenGate3D/GreenGate3D PETG @System.json"
@@ -1656,106 +1424,54 @@
"name": "Elegoo PLA Basic @base",
"sub_path": "filament/Elegoo/Elegoo PLA Basic @base.json"
},
{
"name": "Elegoo PLA Basic @System",
"sub_path": "filament/Elegoo/Elegoo PLA Basic @System.json"
},
{
"name": "Elegoo PLA Galaxy @base",
"sub_path": "filament/Elegoo/Elegoo PLA Galaxy @base.json"
},
{
"name": "Elegoo PLA Galaxy @System",
"sub_path": "filament/Elegoo/Elegoo PLA Galaxy @System.json"
},
{
"name": "Elegoo PLA Glow @base",
"sub_path": "filament/Elegoo/Elegoo PLA Glow @base.json"
},
{
"name": "Elegoo PLA Glow @System",
"sub_path": "filament/Elegoo/Elegoo PLA Glow @System.json"
},
{
"name": "Elegoo PLA Marble @base",
"sub_path": "filament/Elegoo/Elegoo PLA Marble @base.json"
},
{
"name": "Elegoo PLA Marble @System",
"sub_path": "filament/Elegoo/Elegoo PLA Marble @System.json"
},
{
"name": "Elegoo PLA Matte @base",
"sub_path": "filament/Elegoo/Elegoo PLA Matte @base.json"
},
{
"name": "Elegoo PLA Matte @System",
"sub_path": "filament/Elegoo/Elegoo PLA Matte @System.json"
},
{
"name": "Elegoo PLA PRO @base",
"sub_path": "filament/Elegoo/Elegoo PLA PRO @base.json"
},
{
"name": "Elegoo PLA PRO @System",
"sub_path": "filament/Elegoo/Elegoo PLA PRO @System.json"
},
{
"name": "Elegoo PLA Silk @base",
"sub_path": "filament/Elegoo/Elegoo PLA Silk @base.json"
},
{
"name": "Elegoo PLA Silk @System",
"sub_path": "filament/Elegoo/Elegoo PLA Silk @System.json"
},
{
"name": "Elegoo PLA Sparkle @base",
"sub_path": "filament/Elegoo/Elegoo PLA Sparkle @base.json"
},
{
"name": "Elegoo PLA Sparkle @System",
"sub_path": "filament/Elegoo/Elegoo PLA Sparkle @System.json"
},
{
"name": "Elegoo PLA Translucent2 @base",
"sub_path": "filament/Elegoo/Elegoo PLA Translucent2 @base.json"
},
{
"name": "Elegoo PLA Translucent2 @System",
"sub_path": "filament/Elegoo/Elegoo PLA Translucent2 @System.json"
},
{
"name": "Elegoo PLA Wood @base",
"sub_path": "filament/Elegoo/Elegoo PLA Wood @base.json"
},
{
"name": "Elegoo PLA Wood @System",
"sub_path": "filament/Elegoo/Elegoo PLA Wood @System.json"
},
{
"name": "Elegoo PLA+ @base",
"sub_path": "filament/Elegoo/Elegoo PLA+ @base.json"
},
{
"name": "Elegoo PLA+ @System",
"sub_path": "filament/Elegoo/Elegoo PLA+ @System.json"
},
{
"name": "Elegoo PLA-CF @base",
"sub_path": "filament/Elegoo/Elegoo PLA-CF @base.json"
},
{
"name": "Elegoo PLA-CF @System",
"sub_path": "filament/Elegoo/Elegoo PLA-CF @System.json"
},
{
"name": "Elegoo Rapid PLA+ @base",
"sub_path": "filament/Elegoo/Elegoo Rapid PLA+ @base.json"
},
{
"name": "Elegoo Rapid PLA+ @System",
"sub_path": "filament/Elegoo/Elegoo Rapid PLA+ @System.json"
},
{
"name": "FDplast PLA @System",
"sub_path": "filament/FDplast/FDplast PLA @System.json"
@@ -1768,6 +1484,194 @@
"name": "FILL3D PLA Turbo @System",
"sub_path": "filament/FILL3D/FILL3D PLA Turbo @System.json"
},
{
"name": "FilAr PLA Amarillo Lirio",
"sub_path": "filament/FilAr/FilAr PLA Amarillo Lirio.json"
},
{
"name": "FilAr PLA Azul Francia",
"sub_path": "filament/FilAr/FilAr PLA Azul Francia.json"
},
{
"name": "FilAr PLA Blanco Antartida",
"sub_path": "filament/FilAr/FilAr PLA Blanco Antartida.json"
},
{
"name": "FilAr PLA Blanco Calido",
"sub_path": "filament/FilAr/FilAr PLA Blanco Calido.json"
},
{
"name": "FilAr PLA Bronce",
"sub_path": "filament/FilAr/FilAr PLA Bronce.json"
},
{
"name": "FilAr PLA Cafe con Leche",
"sub_path": "filament/FilAr/FilAr PLA Cafe con Leche.json"
},
{
"name": "FilAr PLA Carpincho",
"sub_path": "filament/FilAr/FilAr PLA Carpincho.json"
},
{
"name": "FilAr PLA Celeste Cielo",
"sub_path": "filament/FilAr/FilAr PLA Celeste Cielo.json"
},
{
"name": "FilAr PLA Cobre",
"sub_path": "filament/FilAr/FilAr PLA Cobre.json"
},
{
"name": "FilAr PLA Dorado",
"sub_path": "filament/FilAr/FilAr PLA Dorado.json"
},
{
"name": "FilAr PLA Gris Ceniza",
"sub_path": "filament/FilAr/FilAr PLA Gris Ceniza.json"
},
{
"name": "FilAr PLA Gris Pizarra",
"sub_path": "filament/FilAr/FilAr PLA Gris Pizarra.json"
},
{
"name": "FilAr PLA Gris Plata",
"sub_path": "filament/FilAr/FilAr PLA Gris Plata.json"
},
{
"name": "FilAr PLA Manteca",
"sub_path": "filament/FilAr/FilAr PLA Manteca.json"
},
{
"name": "FilAr PLA Marron Oxido",
"sub_path": "filament/FilAr/FilAr PLA Marron Oxido.json"
},
{
"name": "FilAr PLA Naranja Tigre",
"sub_path": "filament/FilAr/FilAr PLA Naranja Tigre.json"
},
{
"name": "FilAr PLA Negro Azabache",
"sub_path": "filament/FilAr/FilAr PLA Negro Azabache.json"
},
{
"name": "FilAr PLA Oro",
"sub_path": "filament/FilAr/FilAr PLA Oro.json"
},
{
"name": "FilAr PLA Piel",
"sub_path": "filament/FilAr/FilAr PLA Piel.json"
},
{
"name": "FilAr PLA Rojo de Carreras",
"sub_path": "filament/FilAr/FilAr PLA Rojo de Carreras.json"
},
{
"name": "FilAr PLA Rosa Amaranto",
"sub_path": "filament/FilAr/FilAr PLA Rosa Amaranto.json"
},
{
"name": "FilAr PLA Rosa Flamenco",
"sub_path": "filament/FilAr/FilAr PLA Rosa Flamenco.json"
},
{
"name": "FilAr PLA Tabaco",
"sub_path": "filament/FilAr/FilAr PLA Tabaco.json"
},
{
"name": "FilAr PLA Titanio",
"sub_path": "filament/FilAr/FilAr PLA Titanio.json"
},
{
"name": "FilAr PLA Verde FilAr",
"sub_path": "filament/FilAr/FilAr PLA Verde FilAr.json"
},
{
"name": "FilAr PLA Verde Manzana",
"sub_path": "filament/FilAr/FilAr PLA Verde Manzana.json"
},
{
"name": "FilAr PLA Verde Oliva",
"sub_path": "filament/FilAr/FilAr PLA Verde Oliva.json"
},
{
"name": "FilAr PLA Verde Pixel",
"sub_path": "filament/FilAr/FilAr PLA Verde Pixel.json"
},
{
"name": "FilAr PLA Violeta Jacaranda",
"sub_path": "filament/FilAr/FilAr PLA Violeta Jacaranda.json"
},
{
"name": "FilAr PLA-mate Amarillo",
"sub_path": "filament/FilAr/FilAr PLA-mate Amarillo.json"
},
{
"name": "FilAr PLA-mate Azul",
"sub_path": "filament/FilAr/FilAr PLA-mate Azul.json"
},
{
"name": "FilAr PLA-mate Beige",
"sub_path": "filament/FilAr/FilAr PLA-mate Beige.json"
},
{
"name": "FilAr PLA-mate Blanco",
"sub_path": "filament/FilAr/FilAr PLA-mate Blanco.json"
},
{
"name": "FilAr PLA-mate Bordo",
"sub_path": "filament/FilAr/FilAr PLA-mate Bordo.json"
},
{
"name": "FilAr PLA-mate Celeste Cielo",
"sub_path": "filament/FilAr/FilAr PLA-mate Celeste Cielo.json"
},
{
"name": "FilAr PLA-mate Chocolate",
"sub_path": "filament/FilAr/FilAr PLA-mate Chocolate.json"
},
{
"name": "FilAr PLA-mate Gris",
"sub_path": "filament/FilAr/FilAr PLA-mate Gris.json"
},
{
"name": "FilAr PLA-mate Marron",
"sub_path": "filament/FilAr/FilAr PLA-mate Marron.json"
},
{
"name": "FilAr PLA-mate Naranja",
"sub_path": "filament/FilAr/FilAr PLA-mate Naranja.json"
},
{
"name": "FilAr PLA-mate Negro",
"sub_path": "filament/FilAr/FilAr PLA-mate Negro.json"
},
{
"name": "FilAr PLA-mate Piel",
"sub_path": "filament/FilAr/FilAr PLA-mate Piel.json"
},
{
"name": "FilAr PLA-mate Rojo",
"sub_path": "filament/FilAr/FilAr PLA-mate Rojo.json"
},
{
"name": "FilAr PLA-mate Rosa",
"sub_path": "filament/FilAr/FilAr PLA-mate Rosa.json"
},
{
"name": "FilAr PLA-mate Uva",
"sub_path": "filament/FilAr/FilAr PLA-mate Uva.json"
},
{
"name": "FilAr PLA-mate Verde",
"sub_path": "filament/FilAr/FilAr PLA-mate Verde.json"
},
{
"name": "FilAr PLA-mate Violeta",
"sub_path": "filament/FilAr/FilAr PLA-mate Violeta.json"
},
{
"name": "Generic PLA Matte @System",
"sub_path": "filament/Generic PLA Matte @System.json"
},
{
"name": "NIT PLA @System",
"sub_path": "filament/NIT/NIT PLA @System.json"
@@ -1876,10 +1780,6 @@
"name": "PolyLite Dual PLA @base",
"sub_path": "filament/Polymaker/PolyLite Dual PLA @base.json"
},
{
"name": "PolyLite Dual PLA @System",
"sub_path": "filament/Polymaker/PolyLite Dual PLA @System.json"
},
{
"name": "PolyLite PLA @System",
"sub_path": "filament/Polymaker/PolyLite PLA @System.json"
@@ -1976,6 +1876,14 @@
"name": "FILL3D PPCF @System",
"sub_path": "filament/FILL3D/FILL3D PPCF @System.json"
},
{
"name": "Generic PP-CF @System",
"sub_path": "filament/Generic PP-CF @System.json"
},
{
"name": "Generic PP-GF @System",
"sub_path": "filament/Generic PP-GF @System.json"
},
{
"name": "Bambu PPA-CF @System",
"sub_path": "filament/Bambu/Bambu PPA-CF @System.json"
@@ -2024,10 +1932,6 @@
"name": "Elegoo Rapid TPU 95A @base",
"sub_path": "filament/Elegoo/Elegoo Rapid TPU 95A @base.json"
},
{
"name": "Elegoo Rapid TPU 95A @System",
"sub_path": "filament/Elegoo/Elegoo Rapid TPU 95A @System.json"
},
{
"name": "Elegoo TPU 95A @System",
"sub_path": "filament/Elegoo/Elegoo TPU 95A @System.json"
@@ -2040,6 +1944,14 @@
"name": "Overture TPU @System",
"sub_path": "filament/Overture/Overture TPU @System.json"
},
{
"name": "Elegoo ASA-CF @System",
"sub_path": "filament/Elegoo/Elegoo ASA-CF @System.json"
},
{
"name": "Elegoo PC-FR @System",
"sub_path": "filament/Elegoo/Elegoo PC-FR @System.json"
},
{
"name": "AliZ PETG-CF @System",
"sub_path": "filament/AliZ/AliZ PETG-CF @System.json"
@@ -2048,9 +1960,97 @@
"name": "AliZ PETG-Metal @System",
"sub_path": "filament/AliZ/AliZ PETG-Metal @System.json"
},
{
"name": "Elegoo PET-CF @System",
"sub_path": "filament/Elegoo/Elegoo PET-CF @System.json"
},
{
"name": "Elegoo PETG HF @System",
"sub_path": "filament/Elegoo/Elegoo PETG HF @System.json"
},
{
"name": "Elegoo PETG PRO @System",
"sub_path": "filament/Elegoo/Elegoo PETG PRO @System.json"
},
{
"name": "Elegoo PETG Translucent @System",
"sub_path": "filament/Elegoo/Elegoo PETG Translucent @System.json"
},
{
"name": "Elegoo PETG-CF @System",
"sub_path": "filament/Elegoo/Elegoo PETG-CF @System.json"
},
{
"name": "Elegoo PETG-GF @System",
"sub_path": "filament/Elegoo/Elegoo PETG-GF @System.json"
},
{
"name": "Elegoo Rapid PETG @System",
"sub_path": "filament/Elegoo/Elegoo Rapid PETG @System.json"
},
{
"name": "Elegoo PLA Basic @System",
"sub_path": "filament/Elegoo/Elegoo PLA Basic @System.json"
},
{
"name": "Elegoo PLA Galaxy @System",
"sub_path": "filament/Elegoo/Elegoo PLA Galaxy @System.json"
},
{
"name": "Elegoo PLA Glow @System",
"sub_path": "filament/Elegoo/Elegoo PLA Glow @System.json"
},
{
"name": "Elegoo PLA Marble @System",
"sub_path": "filament/Elegoo/Elegoo PLA Marble @System.json"
},
{
"name": "Elegoo PLA Matte @System",
"sub_path": "filament/Elegoo/Elegoo PLA Matte @System.json"
},
{
"name": "Elegoo PLA PRO @System",
"sub_path": "filament/Elegoo/Elegoo PLA PRO @System.json"
},
{
"name": "Elegoo PLA Silk @System",
"sub_path": "filament/Elegoo/Elegoo PLA Silk @System.json"
},
{
"name": "Elegoo PLA Sparkle @System",
"sub_path": "filament/Elegoo/Elegoo PLA Sparkle @System.json"
},
{
"name": "Elegoo PLA Translucent2 @System",
"sub_path": "filament/Elegoo/Elegoo PLA Translucent2 @System.json"
},
{
"name": "Elegoo PLA Wood @System",
"sub_path": "filament/Elegoo/Elegoo PLA Wood @System.json"
},
{
"name": "Elegoo PLA+ @System",
"sub_path": "filament/Elegoo/Elegoo PLA+ @System.json"
},
{
"name": "Elegoo PLA-CF @System",
"sub_path": "filament/Elegoo/Elegoo PLA-CF @System.json"
},
{
"name": "Elegoo Rapid PLA+ @System",
"sub_path": "filament/Elegoo/Elegoo Rapid PLA+ @System.json"
},
{
"name": "PolyLite Dual PLA @System",
"sub_path": "filament/Polymaker/PolyLite Dual PLA @System.json"
},
{
"name": "COEX PLA+Silk @System",
"sub_path": "filament/COEX/COEX PLA+Silk @System.json"
},
{
"name": "Elegoo Rapid TPU 95A @System",
"sub_path": "filament/Elegoo/Elegoo Rapid TPU 95A @System.json"
}
],
"process_list": [],
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "Phrozen",
"version": "02.04.00.03",
"version": "02.04.00.04",
"force_update": "0",
"description": "Phrozen configurations",
"machine_model_list": [
@@ -1,139 +0,0 @@
{
"type": "machine",
"name": "fdm_machine_common",
"from": "system",
"instantiation": "false",
"gcode_flavor": "marlin",
"machine_start_gcode": "",
"machine_end_gcode": "",
"extruder_colour": [
"#018001"
],
"extruder_offset": [
"0x0"
],
"machine_max_acceleration_e": [
"5000",
"5000"
],
"machine_max_acceleration_extruding": [
"2000",
"2000"
],
"machine_max_acceleration_retracting": [
"5000",
"5000"
],
"machine_max_acceleration_travel": [
"3000",
"3000"
],
"machine_max_acceleration_x": [
"2000",
"2000"
],
"machine_max_acceleration_y": [
"2000",
"2000"
],
"machine_max_acceleration_z": [
"300",
"200"
],
"machine_max_speed_e": [
"25",
"25"
],
"machine_max_speed_x": [
"300",
"200"
],
"machine_max_speed_y": [
"300",
"200"
],
"machine_max_speed_z": [
"12",
"12"
],
"machine_max_jerk_e": [
"2.5",
"2.5"
],
"machine_max_jerk_x": [
"9",
"9"
],
"machine_max_jerk_y": [
"9",
"9"
],
"machine_max_jerk_z": [
"0.2",
"0.4"
],
"machine_min_extruding_rate": [
"0",
"0"
],
"machine_min_travel_rate": [
"0",
"0"
],
"max_layer_height": [
"0.3"
],
"min_layer_height": [
"0.08"
],
"printable_height": "300",
"extruder_clearance_radius": "65",
"extruder_clearance_height_to_rod": "36",
"extruder_clearance_height_to_lid": "140",
"nozzle_diameter": [
"0.4"
],
"printer_settings_id": "",
"printer_technology": "FFF",
"printer_variant": "0.4",
"retraction_minimum_travel": [
"1"
],
"retract_before_wipe": [
"70%"
],
"retract_when_changing_layer": [
"1"
],
"retraction_length": [
"0.8"
],
"retract_length_toolchange": [
"2"
],
"z_hop": [
"0.4"
],
"retract_restart_extra": [
"0"
],
"retract_restart_extra_toolchange": [
"0"
],
"retraction_speed": [
"30"
],
"deretraction_speed": [
"30"
],
"silent_mode": "0",
"single_extruder_multi_material": "1",
"change_filament_gcode": "",
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
"machine_pause_gcode": "M400 U1\n",
"wipe": [
"1"
],
"z_hop_types": "Normal Lift"
}
+336 -336
View File
@@ -1448,34 +1448,10 @@
"name": "fdm_filament_tpu",
"sub_path": "filament/fdm_filament_tpu.json"
},
{
"name": "Generic ABS @Prusa base",
"sub_path": "filament/Generic ABS @Prusa base.json"
},
{
"name": "Generic ABS @Prusa",
"sub_path": "filament/Generic ABS @Prusa.json"
},
{
"name": "Generic ABS @Prusa CORE One",
"sub_path": "filament/Generic ABS @Prusa CORE One.json"
},
{
"name": "Generic ABS @Prusa MINIIS",
"sub_path": "filament/Generic ABS @Prusa MINIIS.json"
},
{
"name": "Generic ABS @Prusa MINIIS 0.25",
"sub_path": "filament/Generic ABS @Prusa MINIIS 0.25.json"
},
{
"name": "Generic ABS @Prusa MINIIS 0.6",
"sub_path": "filament/Generic ABS @Prusa MINIIS 0.6.json"
},
{
"name": "Generic ABS @Prusa MINIIS 0.8",
"sub_path": "filament/Generic ABS @Prusa MINIIS 0.8.json"
},
{
"name": "Generic ABS @Prusa MK3.5",
"sub_path": "filament/Generic ABS @Prusa MK3.5.json"
@@ -1492,37 +1468,13 @@
"name": "Generic ABS @Prusa MK3.5 0.8",
"sub_path": "filament/Generic ABS @Prusa MK3.5 0.8.json"
},
{
"name": "Generic ABS @Prusa MK4",
"sub_path": "filament/Generic ABS @Prusa MK4.json"
},
{
"name": "Generic ABS @Prusa MK4S",
"sub_path": "filament/Generic ABS @Prusa MK4S.json"
},
{
"name": "Generic ABS @Prusa XL",
"sub_path": "filament/Generic ABS @Prusa XL.json"
},
{
"name": "Generic ABS @Prusa XL 5T",
"sub_path": "filament/Generic ABS @Prusa XL 5T.json"
},
{
"name": "Generic ABS HF @Prusa base",
"sub_path": "filament/Generic ABS HF @Prusa base.json"
},
{
"name": "Generic ABS HF @Prusa MINIIS",
"sub_path": "filament/Generic ABS HF @Prusa MINIIS.json"
},
{
"name": "Generic ABS HF @Prusa MINIIS 0.6",
"sub_path": "filament/Generic ABS HF @Prusa MINIIS 0.6.json"
},
{
"name": "Generic ABS HF @Prusa MINIIS 0.8",
"sub_path": "filament/Generic ABS HF @Prusa MINIIS 0.8.json"
"name": "Generic ABS @Prusa base",
"sub_path": "filament/Generic ABS @Prusa base.json"
},
{
"name": "Generic ABS HF @Prusa MK3.5",
@@ -1536,6 +1488,10 @@
"name": "Generic ABS HF @Prusa MK3.5 0.8",
"sub_path": "filament/Generic ABS HF @Prusa MK3.5 0.8.json"
},
{
"name": "Generic ABS HF @Prusa base",
"sub_path": "filament/Generic ABS HF @Prusa base.json"
},
{
"name": "Generic ASA @Prusa",
"sub_path": "filament/Generic ASA @Prusa.json"
@@ -1584,22 +1540,6 @@
"name": "Generic ASA @Prusa MK4S",
"sub_path": "filament/Generic ASA @Prusa MK4S.json"
},
{
"name": "Generic ASA HF @Prusa base",
"sub_path": "filament/Generic ASA HF @Prusa base.json"
},
{
"name": "Generic ASA HF @Prusa MINIIS",
"sub_path": "filament/Generic ASA HF @Prusa MINIIS.json"
},
{
"name": "Generic ASA HF @Prusa MINIIS 0.6",
"sub_path": "filament/Generic ASA HF @Prusa MINIIS 0.6.json"
},
{
"name": "Generic ASA HF @Prusa MINIIS 0.8",
"sub_path": "filament/Generic ASA HF @Prusa MINIIS 0.8.json"
},
{
"name": "Generic ASA HF @Prusa MK3.5",
"sub_path": "filament/Generic ASA HF @Prusa MK3.5.json"
@@ -1612,6 +1552,10 @@
"name": "Generic ASA HF @Prusa MK3.5 0.8",
"sub_path": "filament/Generic ASA HF @Prusa MK3.5 0.8.json"
},
{
"name": "Generic ASA HF @Prusa base",
"sub_path": "filament/Generic ASA HF @Prusa base.json"
},
{
"name": "Prusament ASA @CORE One",
"sub_path": "filament/Prusament ASA @CORE One.json"
@@ -1636,30 +1580,6 @@
"name": "Generic TPU @Prusa CORE One",
"sub_path": "filament/Generic TPU @Prusa CORE One.json"
},
{
"name": "Generic PA @Prusa base",
"sub_path": "filament/Generic PA @Prusa base.json"
},
{
"name": "Generic PA @Prusa",
"sub_path": "filament/Generic PA @Prusa.json"
},
{
"name": "Generic PA @Prusa MINIIS",
"sub_path": "filament/Generic PA @Prusa MINIIS.json"
},
{
"name": "Generic PA @Prusa MINIIS 0.25",
"sub_path": "filament/Generic PA @Prusa MINIIS 0.25.json"
},
{
"name": "Generic PA @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PA @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PA @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PA @Prusa MINIIS 0.8.json"
},
{
"name": "Generic PA @Prusa MK3.5",
"sub_path": "filament/Generic PA @Prusa MK3.5.json"
@@ -1677,28 +1597,8 @@
"sub_path": "filament/Generic PA @Prusa MK3.5 0.8.json"
},
{
"name": "Generic PA-CF @Prusa base",
"sub_path": "filament/Generic PA-CF @Prusa base.json"
},
{
"name": "Generic PA-CF @Prusa",
"sub_path": "filament/Generic PA-CF @Prusa.json"
},
{
"name": "Generic PA-CF @Prusa MINIIS",
"sub_path": "filament/Generic PA-CF @Prusa MINIIS.json"
},
{
"name": "Generic PA-CF @Prusa MINIIS 0.25",
"sub_path": "filament/Generic PA-CF @Prusa MINIIS 0.25.json"
},
{
"name": "Generic PA-CF @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PA-CF @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PA-CF @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PA-CF @Prusa MINIIS 0.8.json"
"name": "Generic PA @Prusa base",
"sub_path": "filament/Generic PA @Prusa base.json"
},
{
"name": "Generic PA-CF @Prusa MK3.5",
@@ -1716,6 +1616,10 @@
"name": "Generic PA-CF @Prusa MK3.5 0.8",
"sub_path": "filament/Generic PA-CF @Prusa MK3.5 0.8.json"
},
{
"name": "Generic PA-CF @Prusa base",
"sub_path": "filament/Generic PA-CF @Prusa base.json"
},
{
"name": "Prusament PA-CF @CORE One",
"sub_path": "filament/Prusament PA-CF @CORE One.json"
@@ -1764,22 +1668,6 @@
"name": "Generic PC @Prusa MK3.5 0.8",
"sub_path": "filament/Generic PC @Prusa MK3.5 0.8.json"
},
{
"name": "Generic PC HF @Prusa base",
"sub_path": "filament/Generic PC HF @Prusa base.json"
},
{
"name": "Generic PC HF @Prusa MINIIS",
"sub_path": "filament/Generic PC HF @Prusa MINIIS.json"
},
{
"name": "Generic PC HF @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PC HF @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PC HF @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PC HF @Prusa MINIIS 0.8.json"
},
{
"name": "Generic PC HF @Prusa MK3.5",
"sub_path": "filament/Generic PC HF @Prusa MK3.5.json"
@@ -1792,6 +1680,10 @@
"name": "Generic PC HF @Prusa MK3.5 0.8",
"sub_path": "filament/Generic PC HF @Prusa MK3.5 0.8.json"
},
{
"name": "Generic PC HF @Prusa base",
"sub_path": "filament/Generic PC HF @Prusa base.json"
},
{
"name": "Prusament PC Blend @CORE One",
"sub_path": "filament/Prusament PC Blend @CORE One.json"
@@ -1816,34 +1708,10 @@
"name": "Prusament PC-CF @XL 5T",
"sub_path": "filament/Prusament PC-CF @XL 5T.json"
},
{
"name": "Generic PETG @Prusa base",
"sub_path": "filament/Generic PETG @Prusa base.json"
},
{
"name": "Generic PETG @Prusa",
"sub_path": "filament/Generic PETG @Prusa.json"
},
{
"name": "Generic PETG @Prusa CORE One",
"sub_path": "filament/Generic PETG @Prusa CORE One.json"
},
{
"name": "Generic PETG @Prusa MINIIS",
"sub_path": "filament/Generic PETG @Prusa MINIIS.json"
},
{
"name": "Generic PETG @Prusa MINIIS 0.25",
"sub_path": "filament/Generic PETG @Prusa MINIIS 0.25.json"
},
{
"name": "Generic PETG @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PETG @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PETG @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PETG @Prusa MINIIS 0.8.json"
},
{
"name": "Generic PETG @Prusa MK3.5",
"sub_path": "filament/Generic PETG @Prusa MK3.5.json"
@@ -1860,37 +1728,13 @@
"name": "Generic PETG @Prusa MK3.5 0.8",
"sub_path": "filament/Generic PETG @Prusa MK3.5 0.8.json"
},
{
"name": "Generic PETG @Prusa MK4",
"sub_path": "filament/Generic PETG @Prusa MK4.json"
},
{
"name": "Generic PETG @Prusa MK4S",
"sub_path": "filament/Generic PETG @Prusa MK4S.json"
},
{
"name": "Generic PETG @Prusa XL",
"sub_path": "filament/Generic PETG @Prusa XL.json"
},
{
"name": "Generic PETG @Prusa XL 5T",
"sub_path": "filament/Generic PETG @Prusa XL 5T.json"
},
{
"name": "Generic PETG HF @Prusa base",
"sub_path": "filament/Generic PETG HF @Prusa base.json"
},
{
"name": "Generic PETG HF @Prusa MINIIS",
"sub_path": "filament/Generic PETG HF @Prusa MINIIS.json"
},
{
"name": "Generic PETG HF @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PETG HF @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PETG HF @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PETG HF @Prusa MINIIS 0.8.json"
"name": "Generic PETG @Prusa base",
"sub_path": "filament/Generic PETG @Prusa base.json"
},
{
"name": "Generic PETG HF @Prusa MK3.5",
@@ -1904,6 +1748,10 @@
"name": "Generic PETG HF @Prusa MK3.5 0.8",
"sub_path": "filament/Generic PETG HF @Prusa MK3.5 0.8.json"
},
{
"name": "Generic PETG HF @Prusa base",
"sub_path": "filament/Generic PETG HF @Prusa base.json"
},
{
"name": "Prusament PETG @CORE One",
"sub_path": "filament/Prusament PETG @CORE One.json"
@@ -1912,42 +1760,10 @@
"name": "Prusament PETG @base",
"sub_path": "filament/Prusament PETG @base.json"
},
{
"name": "Prusament PETG @XL",
"sub_path": "filament/Prusament PETG @XL.json"
},
{
"name": "Prusament PETG @XL 5T",
"sub_path": "filament/Prusament PETG @XL 5T.json"
},
{
"name": "Generic PLA @Prusa base",
"sub_path": "filament/Generic PLA @Prusa base.json"
},
{
"name": "Generic PLA @Prusa",
"sub_path": "filament/Generic PLA @Prusa.json"
},
{
"name": "Generic PLA @Prusa CORE One",
"sub_path": "filament/Generic PLA @Prusa CORE One.json"
},
{
"name": "Generic PLA @Prusa MINIIS",
"sub_path": "filament/Generic PLA @Prusa MINIIS.json"
},
{
"name": "Generic PLA @Prusa MINIIS 0.25",
"sub_path": "filament/Generic PLA @Prusa MINIIS 0.25.json"
},
{
"name": "Generic PLA @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PLA @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PLA @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PLA @Prusa MINIIS 0.8.json"
},
{
"name": "Generic PLA @Prusa MK3.5",
"sub_path": "filament/Generic PLA @Prusa MK3.5.json"
@@ -1964,37 +1780,13 @@
"name": "Generic PLA @Prusa MK3.5 0.8",
"sub_path": "filament/Generic PLA @Prusa MK3.5 0.8.json"
},
{
"name": "Generic PLA @Prusa MK4",
"sub_path": "filament/Generic PLA @Prusa MK4.json"
},
{
"name": "Generic PLA @Prusa MK4S",
"sub_path": "filament/Generic PLA @Prusa MK4S.json"
},
{
"name": "Generic PLA @Prusa XL",
"sub_path": "filament/Generic PLA @Prusa XL.json"
},
{
"name": "Generic PLA @Prusa XL 5T",
"sub_path": "filament/Generic PLA @Prusa XL 5T.json"
},
{
"name": "Generic PLA HF @Prusa base",
"sub_path": "filament/Generic PLA HF @Prusa base.json"
},
{
"name": "Generic PLA HF @Prusa MINIIS",
"sub_path": "filament/Generic PLA HF @Prusa MINIIS.json"
},
{
"name": "Generic PLA HF @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PLA HF @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PLA HF @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PLA HF @Prusa MINIIS 0.8.json"
"name": "Generic PLA @Prusa base",
"sub_path": "filament/Generic PLA @Prusa base.json"
},
{
"name": "Generic PLA HF @Prusa MK3.5",
@@ -2008,34 +1800,14 @@
"name": "Generic PLA HF @Prusa MK3.5 0.8",
"sub_path": "filament/Generic PLA HF @Prusa MK3.5 0.8.json"
},
{
"name": "Generic PLA HF @Prusa base",
"sub_path": "filament/Generic PLA HF @Prusa base.json"
},
{
"name": "Generic PLA Silk @Prusa CORE One",
"sub_path": "filament/Generic PLA Silk @Prusa CORE One.json"
},
{
"name": "Generic PLA-CF @Prusa base",
"sub_path": "filament/Generic PLA-CF @Prusa base.json"
},
{
"name": "Generic PLA-CF @Prusa",
"sub_path": "filament/Generic PLA-CF @Prusa.json"
},
{
"name": "Generic PLA-CF @Prusa MINIIS",
"sub_path": "filament/Generic PLA-CF @Prusa MINIIS.json"
},
{
"name": "Generic PLA-CF @Prusa MINIIS 0.25",
"sub_path": "filament/Generic PLA-CF @Prusa MINIIS 0.25.json"
},
{
"name": "Generic PLA-CF @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PLA-CF @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PLA-CF @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PLA-CF @Prusa MINIIS 0.8.json"
},
{
"name": "Generic PLA-CF @Prusa MK3.5",
"sub_path": "filament/Generic PLA-CF @Prusa MK3.5.json"
@@ -2052,6 +1824,10 @@
"name": "Generic PLA-CF @Prusa MK3.5 0.8",
"sub_path": "filament/Generic PLA-CF @Prusa MK3.5 0.8.json"
},
{
"name": "Generic PLA-CF @Prusa base",
"sub_path": "filament/Generic PLA-CF @Prusa base.json"
},
{
"name": "Prusament PLA @CORE One",
"sub_path": "filament/Prusament PLA @CORE One.json"
@@ -2060,14 +1836,6 @@
"name": "Prusament PLA @base",
"sub_path": "filament/Prusament PLA @base.json"
},
{
"name": "Prusament PLA @XL",
"sub_path": "filament/Prusament PLA @XL.json"
},
{
"name": "Prusament PLA @XL 5T",
"sub_path": "filament/Prusament PLA @XL 5T.json"
},
{
"name": "Prusament rPLA @CORE One",
"sub_path": "filament/Prusament rPLA @CORE One.json"
@@ -2076,38 +1844,6 @@
"name": "Prusament rPLA @base",
"sub_path": "filament/Prusament rPLA @base.json"
},
{
"name": "Prusament rPLA @XL",
"sub_path": "filament/Prusament rPLA @XL.json"
},
{
"name": "Prusament rPLA @XL 5T",
"sub_path": "filament/Prusament rPLA @XL 5T.json"
},
{
"name": "Generic PVA @Prusa base",
"sub_path": "filament/Generic PVA @Prusa base.json"
},
{
"name": "Generic PVA @Prusa",
"sub_path": "filament/Generic PVA @Prusa.json"
},
{
"name": "Generic PVA @Prusa MINIIS",
"sub_path": "filament/Generic PVA @Prusa MINIIS.json"
},
{
"name": "Generic PVA @Prusa MINIIS 0.25",
"sub_path": "filament/Generic PVA @Prusa MINIIS 0.25.json"
},
{
"name": "Generic PVA @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PVA @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PVA @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PVA @Prusa MINIIS 0.8.json"
},
{
"name": "Generic PVA @Prusa MK3.5",
"sub_path": "filament/Generic PVA @Prusa MK3.5.json"
@@ -2125,20 +1861,8 @@
"sub_path": "filament/Generic PVA @Prusa MK3.5 0.8.json"
},
{
"name": "Generic PVA HF @Prusa base",
"sub_path": "filament/Generic PVA HF @Prusa base.json"
},
{
"name": "Generic PVA HF @Prusa MINIIS",
"sub_path": "filament/Generic PVA HF @Prusa MINIIS.json"
},
{
"name": "Generic PVA HF @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PVA HF @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PVA HF @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PVA HF @Prusa MINIIS 0.8.json"
"name": "Generic PVA @Prusa base",
"sub_path": "filament/Generic PVA @Prusa base.json"
},
{
"name": "Generic PVA HF @Prusa MK3.5",
@@ -2152,6 +1876,10 @@
"name": "Generic PVA HF @Prusa MK3.5 0.8",
"sub_path": "filament/Generic PVA HF @Prusa MK3.5 0.8.json"
},
{
"name": "Generic PVA HF @Prusa base",
"sub_path": "filament/Generic PVA HF @Prusa base.json"
},
{
"name": "Prusament PVB @CORE One",
"sub_path": "filament/Prusament PVB @CORE One.json"
@@ -2164,42 +1892,26 @@
"name": "Prusament PVB @XL 5T",
"sub_path": "filament/Prusament PVB @XL 5T.json"
},
{
"name": "Generic TPU @Prusa base",
"sub_path": "filament/Generic TPU @Prusa base.json"
},
{
"name": "Generic TPU @Prusa",
"sub_path": "filament/Generic TPU @Prusa.json"
},
{
"name": "Generic TPU @Prusa MINIIS",
"sub_path": "filament/Generic TPU @Prusa MINIIS.json"
},
{
"name": "Generic TPU @Prusa MK3.5",
"sub_path": "filament/Generic TPU @Prusa MK3.5.json"
},
{
"name": "Generic TPU @Prusa MK4",
"sub_path": "filament/Generic TPU @Prusa MK4.json"
},
{
"name": "Generic TPU @Prusa MK4S",
"sub_path": "filament/Generic TPU @Prusa MK4S.json"
},
{
"name": "Generic TPU HF @Prusa base",
"sub_path": "filament/Generic TPU HF @Prusa base.json"
},
{
"name": "Generic TPU HF @Prusa MINIIS",
"sub_path": "filament/Generic TPU HF @Prusa MINIIS.json"
"name": "Generic TPU @Prusa base",
"sub_path": "filament/Generic TPU @Prusa base.json"
},
{
"name": "Generic TPU HF @Prusa MK3.5",
"sub_path": "filament/Generic TPU HF @Prusa MK3.5.json"
},
{
"name": "Generic TPU HF @Prusa base",
"sub_path": "filament/Generic TPU HF @Prusa base.json"
},
{
"name": "Generic ABS @Prusa CORE One 0.6",
"sub_path": "filament/Generic ABS @Prusa CORE One 0.6.json"
@@ -2236,6 +1948,50 @@
"name": "Generic ABS @Prusa MK4S HF0.4",
"sub_path": "filament/Generic ABS @Prusa MK4S HF0.4.json"
},
{
"name": "Generic ABS @Prusa",
"sub_path": "filament/Generic ABS @Prusa.json"
},
{
"name": "Generic ABS @Prusa MINIIS",
"sub_path": "filament/Generic ABS @Prusa MINIIS.json"
},
{
"name": "Generic ABS @Prusa MINIIS 0.25",
"sub_path": "filament/Generic ABS @Prusa MINIIS 0.25.json"
},
{
"name": "Generic ABS @Prusa MINIIS 0.6",
"sub_path": "filament/Generic ABS @Prusa MINIIS 0.6.json"
},
{
"name": "Generic ABS @Prusa MINIIS 0.8",
"sub_path": "filament/Generic ABS @Prusa MINIIS 0.8.json"
},
{
"name": "Generic ABS @Prusa MK4",
"sub_path": "filament/Generic ABS @Prusa MK4.json"
},
{
"name": "Generic ABS @Prusa XL",
"sub_path": "filament/Generic ABS @Prusa XL.json"
},
{
"name": "Generic ABS @Prusa XL 5T",
"sub_path": "filament/Generic ABS @Prusa XL 5T.json"
},
{
"name": "Generic ABS HF @Prusa MINIIS",
"sub_path": "filament/Generic ABS HF @Prusa MINIIS.json"
},
{
"name": "Generic ABS HF @Prusa MINIIS 0.6",
"sub_path": "filament/Generic ABS HF @Prusa MINIIS 0.6.json"
},
{
"name": "Generic ABS HF @Prusa MINIIS 0.8",
"sub_path": "filament/Generic ABS HF @Prusa MINIIS 0.8.json"
},
{
"name": "Generic ASA @Prusa CORE One 0.6",
"sub_path": "filament/Generic ASA @Prusa CORE One 0.6.json"
@@ -2272,6 +2028,18 @@
"name": "Generic ASA @Prusa MK4S HF0.4",
"sub_path": "filament/Generic ASA @Prusa MK4S HF0.4.json"
},
{
"name": "Generic ASA HF @Prusa MINIIS",
"sub_path": "filament/Generic ASA HF @Prusa MINIIS.json"
},
{
"name": "Generic ASA HF @Prusa MINIIS 0.6",
"sub_path": "filament/Generic ASA HF @Prusa MINIIS 0.6.json"
},
{
"name": "Generic ASA HF @Prusa MINIIS 0.8",
"sub_path": "filament/Generic ASA HF @Prusa MINIIS 0.8.json"
},
{
"name": "Prusament ASA @CORE One 0.6",
"sub_path": "filament/Prusament ASA @CORE One 0.6.json"
@@ -2304,6 +2072,46 @@
"name": "Generic TPU @Prusa CORE One 0.8",
"sub_path": "filament/Generic TPU @Prusa CORE One 0.8.json"
},
{
"name": "Generic PA @Prusa",
"sub_path": "filament/Generic PA @Prusa.json"
},
{
"name": "Generic PA @Prusa MINIIS",
"sub_path": "filament/Generic PA @Prusa MINIIS.json"
},
{
"name": "Generic PA @Prusa MINIIS 0.25",
"sub_path": "filament/Generic PA @Prusa MINIIS 0.25.json"
},
{
"name": "Generic PA @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PA @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PA @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PA @Prusa MINIIS 0.8.json"
},
{
"name": "Generic PA-CF @Prusa",
"sub_path": "filament/Generic PA-CF @Prusa.json"
},
{
"name": "Generic PA-CF @Prusa MINIIS",
"sub_path": "filament/Generic PA-CF @Prusa MINIIS.json"
},
{
"name": "Generic PA-CF @Prusa MINIIS 0.25",
"sub_path": "filament/Generic PA-CF @Prusa MINIIS 0.25.json"
},
{
"name": "Generic PA-CF @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PA-CF @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PA-CF @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PA-CF @Prusa MINIIS 0.8.json"
},
{
"name": "Prusament PA-CF @CORE One 0.6",
"sub_path": "filament/Prusament PA-CF @CORE One 0.6.json"
@@ -2312,6 +2120,18 @@
"name": "Prusament PA-CF @CORE One 0.8",
"sub_path": "filament/Prusament PA-CF @CORE One 0.8.json"
},
{
"name": "Generic PC HF @Prusa MINIIS",
"sub_path": "filament/Generic PC HF @Prusa MINIIS.json"
},
{
"name": "Generic PC HF @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PC HF @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PC HF @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PC HF @Prusa MINIIS 0.8.json"
},
{
"name": "Prusament PC Blend @CORE One 0.6",
"sub_path": "filament/Prusament PC Blend @CORE One 0.6.json"
@@ -2380,6 +2200,50 @@
"name": "Generic PETG @Prusa MK4S HF0.4",
"sub_path": "filament/Generic PETG @Prusa MK4S HF0.4.json"
},
{
"name": "Generic PETG @Prusa",
"sub_path": "filament/Generic PETG @Prusa.json"
},
{
"name": "Generic PETG @Prusa MINIIS",
"sub_path": "filament/Generic PETG @Prusa MINIIS.json"
},
{
"name": "Generic PETG @Prusa MINIIS 0.25",
"sub_path": "filament/Generic PETG @Prusa MINIIS 0.25.json"
},
{
"name": "Generic PETG @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PETG @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PETG @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PETG @Prusa MINIIS 0.8.json"
},
{
"name": "Generic PETG @Prusa MK4",
"sub_path": "filament/Generic PETG @Prusa MK4.json"
},
{
"name": "Generic PETG @Prusa XL",
"sub_path": "filament/Generic PETG @Prusa XL.json"
},
{
"name": "Generic PETG @Prusa XL 5T",
"sub_path": "filament/Generic PETG @Prusa XL 5T.json"
},
{
"name": "Generic PETG HF @Prusa MINIIS",
"sub_path": "filament/Generic PETG HF @Prusa MINIIS.json"
},
{
"name": "Generic PETG HF @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PETG HF @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PETG HF @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PETG HF @Prusa MINIIS 0.8.json"
},
{
"name": "Prusament PETG @CORE One 0.6",
"sub_path": "filament/Prusament PETG @CORE One 0.6.json"
@@ -2404,6 +2268,14 @@
"name": "Prusament PETG @CORE One HF 0.8",
"sub_path": "filament/Prusament PETG @CORE One HF 0.8.json"
},
{
"name": "Prusament PETG @XL",
"sub_path": "filament/Prusament PETG @XL.json"
},
{
"name": "Prusament PETG @XL 5T",
"sub_path": "filament/Prusament PETG @XL 5T.json"
},
{
"name": "Generic PLA @Prusa CORE One 0.6",
"sub_path": "filament/Generic PLA @Prusa CORE One 0.6.json"
@@ -2444,6 +2316,50 @@
"name": "Generic PLA Silk @Prusa MK4S",
"sub_path": "filament/Generic PLA Silk @Prusa MK4S.json"
},
{
"name": "Generic PLA @Prusa",
"sub_path": "filament/Generic PLA @Prusa.json"
},
{
"name": "Generic PLA @Prusa MINIIS",
"sub_path": "filament/Generic PLA @Prusa MINIIS.json"
},
{
"name": "Generic PLA @Prusa MINIIS 0.25",
"sub_path": "filament/Generic PLA @Prusa MINIIS 0.25.json"
},
{
"name": "Generic PLA @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PLA @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PLA @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PLA @Prusa MINIIS 0.8.json"
},
{
"name": "Generic PLA @Prusa MK4",
"sub_path": "filament/Generic PLA @Prusa MK4.json"
},
{
"name": "Generic PLA @Prusa XL",
"sub_path": "filament/Generic PLA @Prusa XL.json"
},
{
"name": "Generic PLA @Prusa XL 5T",
"sub_path": "filament/Generic PLA @Prusa XL 5T.json"
},
{
"name": "Generic PLA HF @Prusa MINIIS",
"sub_path": "filament/Generic PLA HF @Prusa MINIIS.json"
},
{
"name": "Generic PLA HF @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PLA HF @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PLA HF @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PLA HF @Prusa MINIIS 0.8.json"
},
{
"name": "Generic PLA Silk @Prusa CORE One 0.6",
"sub_path": "filament/Generic PLA Silk @Prusa CORE One 0.6.json"
@@ -2452,6 +2368,26 @@
"name": "Generic PLA Silk @Prusa CORE One 0.8",
"sub_path": "filament/Generic PLA Silk @Prusa CORE One 0.8.json"
},
{
"name": "Generic PLA-CF @Prusa",
"sub_path": "filament/Generic PLA-CF @Prusa.json"
},
{
"name": "Generic PLA-CF @Prusa MINIIS",
"sub_path": "filament/Generic PLA-CF @Prusa MINIIS.json"
},
{
"name": "Generic PLA-CF @Prusa MINIIS 0.25",
"sub_path": "filament/Generic PLA-CF @Prusa MINIIS 0.25.json"
},
{
"name": "Generic PLA-CF @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PLA-CF @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PLA-CF @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PLA-CF @Prusa MINIIS 0.8.json"
},
{
"name": "Prusament PLA @CORE One 0.6",
"sub_path": "filament/Prusament PLA @CORE One 0.6.json"
@@ -2476,6 +2412,14 @@
"name": "Prusament PLA @CORE One HF 0.8",
"sub_path": "filament/Prusament PLA @CORE One HF 0.8.json"
},
{
"name": "Prusament PLA @XL",
"sub_path": "filament/Prusament PLA @XL.json"
},
{
"name": "Prusament PLA @XL 5T",
"sub_path": "filament/Prusament PLA @XL 5T.json"
},
{
"name": "Prusament rPLA @CORE One 0.6",
"sub_path": "filament/Prusament rPLA @CORE One 0.6.json"
@@ -2484,6 +2428,46 @@
"name": "Prusament rPLA @CORE One 0.8",
"sub_path": "filament/Prusament rPLA @CORE One 0.8.json"
},
{
"name": "Prusament rPLA @XL",
"sub_path": "filament/Prusament rPLA @XL.json"
},
{
"name": "Prusament rPLA @XL 5T",
"sub_path": "filament/Prusament rPLA @XL 5T.json"
},
{
"name": "Generic PVA @Prusa",
"sub_path": "filament/Generic PVA @Prusa.json"
},
{
"name": "Generic PVA @Prusa MINIIS",
"sub_path": "filament/Generic PVA @Prusa MINIIS.json"
},
{
"name": "Generic PVA @Prusa MINIIS 0.25",
"sub_path": "filament/Generic PVA @Prusa MINIIS 0.25.json"
},
{
"name": "Generic PVA @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PVA @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PVA @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PVA @Prusa MINIIS 0.8.json"
},
{
"name": "Generic PVA HF @Prusa MINIIS",
"sub_path": "filament/Generic PVA HF @Prusa MINIIS.json"
},
{
"name": "Generic PVA HF @Prusa MINIIS 0.6",
"sub_path": "filament/Generic PVA HF @Prusa MINIIS 0.6.json"
},
{
"name": "Generic PVA HF @Prusa MINIIS 0.8",
"sub_path": "filament/Generic PVA HF @Prusa MINIIS 0.8.json"
},
{
"name": "Prusament PVB @CORE One 0.6",
"sub_path": "filament/Prusament PVB @CORE One 0.6.json"
@@ -2500,6 +2484,22 @@
"name": "Generic TPU @Prusa MK4S 0.8",
"sub_path": "filament/Generic TPU @Prusa MK4S 0.8.json"
},
{
"name": "Generic TPU @Prusa",
"sub_path": "filament/Generic TPU @Prusa.json"
},
{
"name": "Generic TPU @Prusa MINIIS",
"sub_path": "filament/Generic TPU @Prusa MINIIS.json"
},
{
"name": "Generic TPU @Prusa MK4",
"sub_path": "filament/Generic TPU @Prusa MK4.json"
},
{
"name": "Generic TPU HF @Prusa MINIIS",
"sub_path": "filament/Generic TPU HF @Prusa MINIIS.json"
},
{
"name": "Generic ABS @Prusa MK4S HF0.5",
"sub_path": "filament/Generic ABS @Prusa MK4S HF0.5.json"
+1414 -1414
View File
File diff suppressed because it is too large Load Diff
+30 -30
View File
@@ -276,26 +276,22 @@
}
],
"filament_list": [
{
"name": "Generic ABS BigNozzle @RatRig",
"sub_path": "filament/Generic ABS BigNozzle @RatRig.json"
},
{
"name": "Generic ABS @RatRig",
"sub_path": "filament/Generic ABS @RatRig.json"
},
{
"name": "RatRig PunkFil ABS",
"sub_path": "filament/RatRig PunkFil ABS.json"
},
{
"name": "Generic ASA BigNozzle @RatRig",
"sub_path": "filament/Generic ASA BigNozzle @RatRig.json"
"name": "Generic ABS BigNozzle @RatRig",
"sub_path": "filament/Generic ABS BigNozzle @RatRig.json"
},
{
"name": "Generic ASA @RatRig",
"sub_path": "filament/Generic ASA @RatRig.json"
},
{
"name": "Generic ASA BigNozzle @RatRig",
"sub_path": "filament/Generic ASA BigNozzle @RatRig.json"
},
{
"name": "Generic PA @RatRig",
"sub_path": "filament/Generic PA @RatRig.json"
@@ -308,38 +304,30 @@
"name": "Generic PC @RatRig",
"sub_path": "filament/Generic PC @RatRig.json"
},
{
"name": "Generic PCTG BigNozzle @RatRig",
"sub_path": "filament/Generic PCTG BigNozzle @RatRig.json"
},
{
"name": "Generic PETG BigNozzle @RatRig",
"sub_path": "filament/Generic PETG BigNozzle @RatRig.json"
},
{
"name": "Generic PCTG @RatRig",
"sub_path": "filament/Generic PCTG @RatRig.json"
},
{
"name": "Generic PCTG BigNozzle @RatRig",
"sub_path": "filament/Generic PCTG BigNozzle @RatRig.json"
},
{
"name": "Generic PETG @RatRig",
"sub_path": "filament/Generic PETG @RatRig.json"
},
{
"name": "RatRig PunkFil PETG",
"sub_path": "filament/RatRig PunkFil PETG.json"
},
{
"name": "RatRig PunkFil PETG CF",
"sub_path": "filament/RatRig PunkFil PETG CF.json"
},
{
"name": "Generic PLA BigNozzle @RatRig",
"sub_path": "filament/Generic PLA BigNozzle @RatRig.json"
"name": "Generic PETG BigNozzle @RatRig",
"sub_path": "filament/Generic PETG BigNozzle @RatRig.json"
},
{
"name": "Generic PLA @RatRig",
"sub_path": "filament/Generic PLA @RatRig.json"
},
{
"name": "Generic PLA BigNozzle @RatRig",
"sub_path": "filament/Generic PLA BigNozzle @RatRig.json"
},
{
"name": "Generic PLA-CF @RatRig",
"sub_path": "filament/Generic PLA-CF @RatRig.json"
@@ -348,13 +336,25 @@
"name": "Generic PVA @RatRig",
"sub_path": "filament/Generic PVA @RatRig.json"
},
{
"name": "Generic TPU @RatRig",
"sub_path": "filament/Generic TPU @RatRig.json"
},
{
"name": "Generic TPU BigNozzle @RatRig",
"sub_path": "filament/Generic TPU BigNozzle @RatRig.json"
},
{
"name": "Generic TPU @RatRig",
"sub_path": "filament/Generic TPU @RatRig.json"
"name": "RatRig PunkFil ABS",
"sub_path": "filament/RatRig PunkFil ABS.json"
},
{
"name": "RatRig PunkFil PETG",
"sub_path": "filament/RatRig PunkFil PETG.json"
},
{
"name": "RatRig PunkFil PETG CF",
"sub_path": "filament/RatRig PunkFil PETG CF.json"
}
],
"machine_list": [
+131 -131
View File
@@ -1,6 +1,6 @@
{
"name": "SeeMeCNC",
"version": "2.4.0.03",
"version": "2.4.0.04",
"force_update": "1",
"description": "SeeMeCNC configurations - Full profile set for Artemis, BOSSdelta, and RostockMAX printers",
"machine_model_list": [
@@ -50,10 +50,6 @@
"name": "SeeMeCNC process base 1.0mm",
"sub_path": "process/SeeMeCNC_process_base_1.0mm.json"
},
{
"name": "SeeMeCNC process base",
"sub_path": "process/SeeMeCNC_process_base.json"
},
{
"name": "0.16mm Fine @SeeMeCNC Artemis 0.4",
"sub_path": "process/0.16mm Fine @SeeMeCNC Artemis 0.4.json"
@@ -86,34 +82,6 @@
"name": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
"sub_path": "process/0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json"
},
{
"name": "0.20mm Fine @SeeMeCNC Artemis 0.5",
"sub_path": "process/0.20mm Fine @SeeMeCNC Artemis 0.5.json"
},
{
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
"sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5.json"
},
{
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
"sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5.json"
},
{
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
"sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5.json"
},
{
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
"sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5.json"
},
{
"name": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
"sub_path": "process/0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5.json"
},
{
"name": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
"sub_path": "process/0.20mm Fine @SeeMeCNC RostockMAX v4 0.5.json"
},
{
"name": "0.20mm Standard @SeeMeCNC Artemis 0.4",
"sub_path": "process/0.20mm Standard @SeeMeCNC Artemis 0.4.json"
@@ -170,34 +138,6 @@
"name": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
"sub_path": "process/0.24mm Draft @SeeMeCNC RostockMAX v4 0.4.json"
},
{
"name": "0.25mm Standard @SeeMeCNC Artemis 0.5",
"sub_path": "process/0.25mm Standard @SeeMeCNC Artemis 0.5.json"
},
{
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
"sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5.json"
},
{
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
"sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5.json"
},
{
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
"sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5.json"
},
{
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
"sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5.json"
},
{
"name": "0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
"sub_path": "process/0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5.json"
},
{
"name": "0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
"sub_path": "process/0.25mm Standard @SeeMeCNC RostockMAX v4 0.5.json"
},
{
"name": "0.28mm Extra Draft @SeeMeCNC Artemis 0.4",
"sub_path": "process/0.28mm Extra Draft @SeeMeCNC Artemis 0.4.json"
@@ -227,32 +167,60 @@
"sub_path": "process/0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4.json"
},
{
"name": "0.28mm Fine @SeeMeCNC Artemis 0.7",
"sub_path": "process/0.28mm Fine @SeeMeCNC Artemis 0.7.json"
"name": "0.20mm Fine @SeeMeCNC Artemis 0.5",
"sub_path": "process/0.20mm Fine @SeeMeCNC Artemis 0.5.json"
},
{
"name": "0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
"sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7.json"
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
"sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5.json"
},
{
"name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
"sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7.json"
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
"sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5.json"
},
{
"name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
"sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7.json"
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
"sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5.json"
},
{
"name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
"sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7.json"
"name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
"sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5.json"
},
{
"name": "0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
"sub_path": "process/0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7.json"
"name": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
"sub_path": "process/0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5.json"
},
{
"name": "0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
"sub_path": "process/0.28mm Fine @SeeMeCNC RostockMAX v4 0.7.json"
"name": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
"sub_path": "process/0.20mm Fine @SeeMeCNC RostockMAX v4 0.5.json"
},
{
"name": "0.25mm Standard @SeeMeCNC Artemis 0.5",
"sub_path": "process/0.25mm Standard @SeeMeCNC Artemis 0.5.json"
},
{
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
"sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5.json"
},
{
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
"sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5.json"
},
{
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
"sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5.json"
},
{
"name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
"sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5.json"
},
{
"name": "0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
"sub_path": "process/0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5.json"
},
{
"name": "0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
"sub_path": "process/0.25mm Standard @SeeMeCNC RostockMAX v4 0.5.json"
},
{
"name": "0.30mm Draft @SeeMeCNC Artemis 0.5",
@@ -282,34 +250,6 @@
"name": "0.30mm Draft @SeeMeCNC RostockMAX v4 0.5",
"sub_path": "process/0.30mm Draft @SeeMeCNC RostockMAX v4 0.5.json"
},
{
"name": "0.30mm TPU Solid @SeeMeCNC Artemis 0.7",
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC Artemis 0.7.json"
},
{
"name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7",
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7.json"
},
{
"name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7",
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7.json"
},
{
"name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7",
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7.json"
},
{
"name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7",
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7.json"
},
{
"name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7",
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7.json"
},
{
"name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7",
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7.json"
},
{
"name": "0.35mm Extra Draft @SeeMeCNC Artemis 0.5",
"sub_path": "process/0.35mm Extra Draft @SeeMeCNC Artemis 0.5.json"
@@ -338,6 +278,62 @@
"name": "0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5",
"sub_path": "process/0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5.json"
},
{
"name": "0.28mm Fine @SeeMeCNC Artemis 0.7",
"sub_path": "process/0.28mm Fine @SeeMeCNC Artemis 0.7.json"
},
{
"name": "0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
"sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7.json"
},
{
"name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
"sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7.json"
},
{
"name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
"sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7.json"
},
{
"name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
"sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7.json"
},
{
"name": "0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
"sub_path": "process/0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7.json"
},
{
"name": "0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
"sub_path": "process/0.28mm Fine @SeeMeCNC RostockMAX v4 0.7.json"
},
{
"name": "0.30mm TPU Solid @SeeMeCNC Artemis 0.7",
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC Artemis 0.7.json"
},
{
"name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7",
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7.json"
},
{
"name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7",
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7.json"
},
{
"name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7",
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7.json"
},
{
"name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7",
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7.json"
},
{
"name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7",
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7.json"
},
{
"name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7",
"sub_path": "process/0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7.json"
},
{
"name": "0.35mm Standard @SeeMeCNC Artemis 0.7",
"sub_path": "process/0.35mm Standard @SeeMeCNC Artemis 0.7.json"
@@ -394,34 +390,6 @@
"name": "0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7",
"sub_path": "process/0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7.json"
},
{
"name": "0.40mm Fine @SeeMeCNC Artemis 1.0",
"sub_path": "process/0.40mm Fine @SeeMeCNC Artemis 1.0.json"
},
{
"name": "0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
"sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0.json"
},
{
"name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
"sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0.json"
},
{
"name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
"sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0.json"
},
{
"name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
"sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0.json"
},
{
"name": "0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
"sub_path": "process/0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0.json"
},
{
"name": "0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
"sub_path": "process/0.40mm Fine @SeeMeCNC RostockMAX v4 1.0.json"
},
{
"name": "0.42mm Draft @SeeMeCNC Artemis 0.7",
"sub_path": "process/0.42mm Draft @SeeMeCNC Artemis 0.7.json"
@@ -478,6 +446,34 @@
"name": "0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7",
"sub_path": "process/0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7.json"
},
{
"name": "0.40mm Fine @SeeMeCNC Artemis 1.0",
"sub_path": "process/0.40mm Fine @SeeMeCNC Artemis 1.0.json"
},
{
"name": "0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
"sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0.json"
},
{
"name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
"sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0.json"
},
{
"name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
"sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0.json"
},
{
"name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
"sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0.json"
},
{
"name": "0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
"sub_path": "process/0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0.json"
},
{
"name": "0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
"sub_path": "process/0.40mm Fine @SeeMeCNC RostockMAX v4 1.0.json"
},
{
"name": "0.50mm Standard @SeeMeCNC Artemis 1.0",
"sub_path": "process/0.50mm Standard @SeeMeCNC Artemis 1.0.json"
@@ -561,6 +557,10 @@
{
"name": "0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0",
"sub_path": "process/0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0.json"
},
{
"name": "SeeMeCNC process base",
"sub_path": "process/SeeMeCNC_process_base.json"
}
],
"filament_list": [
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC ABS 0.4 nozzle",
"inherits": "SeeMeCNC ABS",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC ABS 0.4 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 0.4 nozzle",
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle",
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle",
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle",
"SeeMeCNC BOSSdelta 300 0.4 nozzle",
"SeeMeCNC RostockMAX v3.2 0.4 nozzle",
"SeeMeCNC RostockMAX v4 0.4 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.16mm Fine @SeeMeCNC Artemis 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
"0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
"0.20mm Standard @SeeMeCNC Artemis 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
"0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
"0.24mm Draft @SeeMeCNC Artemis 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
"0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
"0.28mm Extra Draft @SeeMeCNC Artemis 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4",
"0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"5"
],
"filament_z_hop": [
"0.2"
],
"filament_retraction_speed": [
"45"
],
"filament_deretraction_speed": [
"35"
],
"setting_id": "FOSiDadyHyp8WKTb",
"filament_id": "SMCFB00104"
}
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC ABS 0.5 nozzle",
"inherits": "SeeMeCNC ABS",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC ABS 0.5 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 0.5 nozzle",
"SeeMeCNC BOSSdelta 500 0505 0.5 nozzle",
"SeeMeCNC BOSSdelta 500 0510 0.5 nozzle",
"SeeMeCNC BOSSdelta 500 0521 0.5 nozzle",
"SeeMeCNC BOSSdelta 300 0.5 nozzle",
"SeeMeCNC RostockMAX v3.2 0.5 nozzle",
"SeeMeCNC RostockMAX v4 0.5 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.20mm Fine @SeeMeCNC Artemis 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
"0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
"0.25mm Standard @SeeMeCNC Artemis 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
"0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
"0.30mm Draft @SeeMeCNC Artemis 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5",
"0.30mm Draft @SeeMeCNC RostockMAX v4 0.5",
"0.35mm Extra Draft @SeeMeCNC Artemis 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5",
"0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"5"
],
"filament_z_hop": [
"0.3"
],
"filament_retraction_speed": [
"45"
],
"filament_deretraction_speed": [
"35"
],
"setting_id": "XzvEoqhK0cx7JieM",
"filament_id": "SMCFB00105"
}
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC ABS 0.7 nozzle",
"inherits": "SeeMeCNC ABS",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC ABS 0.7 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 0.7 nozzle",
"SeeMeCNC BOSSdelta 500 0505 0.7 nozzle",
"SeeMeCNC BOSSdelta 500 0510 0.7 nozzle",
"SeeMeCNC BOSSdelta 500 0521 0.7 nozzle",
"SeeMeCNC BOSSdelta 300 0.7 nozzle",
"SeeMeCNC RostockMAX v3.2 0.7 nozzle",
"SeeMeCNC RostockMAX v4 0.7 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.28mm Fine @SeeMeCNC Artemis 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
"0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
"0.35mm Standard @SeeMeCNC Artemis 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7",
"0.35mm Standard @SeeMeCNC RostockMAX v4 0.7",
"0.42mm Draft @SeeMeCNC Artemis 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7",
"0.42mm Draft @SeeMeCNC RostockMAX v4 0.7",
"0.49mm Extra Draft @SeeMeCNC Artemis 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7",
"0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"6"
],
"filament_z_hop": [
"0.4"
],
"filament_retraction_speed": [
"45"
],
"filament_deretraction_speed": [
"35"
],
"setting_id": "RbmLGSWPaVvl0NNr",
"filament_id": "SMCFB00107"
}
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC ABS 1.0 nozzle",
"inherits": "SeeMeCNC ABS",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC ABS 1.0 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 1.0 nozzle",
"SeeMeCNC BOSSdelta 500 0505 1.0 nozzle",
"SeeMeCNC BOSSdelta 500 0510 1.0 nozzle",
"SeeMeCNC BOSSdelta 500 0521 1.0 nozzle",
"SeeMeCNC BOSSdelta 300 1.0 nozzle",
"SeeMeCNC RostockMAX v3.2 1.0 nozzle",
"SeeMeCNC RostockMAX v4 1.0 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.40mm Fine @SeeMeCNC Artemis 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
"0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
"0.50mm Standard @SeeMeCNC Artemis 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0",
"0.50mm Standard @SeeMeCNC RostockMAX v4 1.0",
"0.60mm Draft @SeeMeCNC Artemis 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0",
"0.60mm Draft @SeeMeCNC RostockMAX v4 1.0",
"0.70mm Extra Draft @SeeMeCNC Artemis 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0",
"0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"6"
],
"filament_z_hop": [
"0.5"
],
"filament_retraction_speed": [
"45"
],
"filament_deretraction_speed": [
"35"
],
"setting_id": "DTcAxACOOtdvD43R",
"filament_id": "SMCFB00110"
}
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC PA-CF 0.4 nozzle",
"inherits": "SeeMeCNC PA-CF",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC PA-CF 0.4 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 0.4 nozzle",
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle",
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle",
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle",
"SeeMeCNC BOSSdelta 300 0.4 nozzle",
"SeeMeCNC RostockMAX v3.2 0.4 nozzle",
"SeeMeCNC RostockMAX v4 0.4 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.16mm Fine @SeeMeCNC Artemis 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
"0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
"0.20mm Standard @SeeMeCNC Artemis 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
"0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
"0.24mm Draft @SeeMeCNC Artemis 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
"0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
"0.28mm Extra Draft @SeeMeCNC Artemis 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4",
"0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"5"
],
"filament_z_hop": [
"0.2"
],
"filament_retraction_speed": [
"40"
],
"filament_deretraction_speed": [
"30"
],
"setting_id": "jf0puhp8kCuwL3jt",
"filament_id": "SMCFN00104"
}
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC PA-CF 0.5 nozzle",
"inherits": "SeeMeCNC PA-CF",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC PA-CF 0.5 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 0.5 nozzle",
"SeeMeCNC BOSSdelta 500 0505 0.5 nozzle",
"SeeMeCNC BOSSdelta 500 0510 0.5 nozzle",
"SeeMeCNC BOSSdelta 500 0521 0.5 nozzle",
"SeeMeCNC BOSSdelta 300 0.5 nozzle",
"SeeMeCNC RostockMAX v3.2 0.5 nozzle",
"SeeMeCNC RostockMAX v4 0.5 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.20mm Fine @SeeMeCNC Artemis 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
"0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
"0.25mm Standard @SeeMeCNC Artemis 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
"0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
"0.30mm Draft @SeeMeCNC Artemis 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5",
"0.30mm Draft @SeeMeCNC RostockMAX v4 0.5",
"0.35mm Extra Draft @SeeMeCNC Artemis 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5",
"0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"5"
],
"filament_z_hop": [
"0.3"
],
"filament_retraction_speed": [
"40"
],
"filament_deretraction_speed": [
"30"
],
"setting_id": "c3gXbtFjJn4aK7pL",
"filament_id": "SMCFN00105"
}
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC PA-CF 0.7 nozzle",
"inherits": "SeeMeCNC PA-CF",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC PA-CF 0.7 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 0.7 nozzle",
"SeeMeCNC BOSSdelta 500 0505 0.7 nozzle",
"SeeMeCNC BOSSdelta 500 0510 0.7 nozzle",
"SeeMeCNC BOSSdelta 500 0521 0.7 nozzle",
"SeeMeCNC BOSSdelta 300 0.7 nozzle",
"SeeMeCNC RostockMAX v3.2 0.7 nozzle",
"SeeMeCNC RostockMAX v4 0.7 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.28mm Fine @SeeMeCNC Artemis 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
"0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
"0.35mm Standard @SeeMeCNC Artemis 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7",
"0.35mm Standard @SeeMeCNC RostockMAX v4 0.7",
"0.42mm Draft @SeeMeCNC Artemis 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7",
"0.42mm Draft @SeeMeCNC RostockMAX v4 0.7",
"0.49mm Extra Draft @SeeMeCNC Artemis 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7",
"0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"6"
],
"filament_z_hop": [
"0.4"
],
"filament_retraction_speed": [
"40"
],
"filament_deretraction_speed": [
"30"
],
"setting_id": "7sDIfUAs3Ftv7uUD",
"filament_id": "SMCFN00107"
}
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC PA-CF 1.0 nozzle",
"inherits": "SeeMeCNC PA-CF",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC PA-CF 1.0 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 1.0 nozzle",
"SeeMeCNC BOSSdelta 500 0505 1.0 nozzle",
"SeeMeCNC BOSSdelta 500 0510 1.0 nozzle",
"SeeMeCNC BOSSdelta 500 0521 1.0 nozzle",
"SeeMeCNC BOSSdelta 300 1.0 nozzle",
"SeeMeCNC RostockMAX v3.2 1.0 nozzle",
"SeeMeCNC RostockMAX v4 1.0 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.40mm Fine @SeeMeCNC Artemis 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
"0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
"0.50mm Standard @SeeMeCNC Artemis 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0",
"0.50mm Standard @SeeMeCNC RostockMAX v4 1.0",
"0.60mm Draft @SeeMeCNC Artemis 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0",
"0.60mm Draft @SeeMeCNC RostockMAX v4 1.0",
"0.70mm Extra Draft @SeeMeCNC Artemis 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0",
"0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"6"
],
"filament_z_hop": [
"0.5"
],
"filament_retraction_speed": [
"40"
],
"filament_deretraction_speed": [
"30"
],
"setting_id": "nr7CBE99WoHXy4Dw",
"filament_id": "SMCFN00110"
}
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC PETG 0.4 nozzle",
"inherits": "SeeMeCNC PETG",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC PETG 0.4 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 0.4 nozzle",
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle",
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle",
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle",
"SeeMeCNC BOSSdelta 300 0.4 nozzle",
"SeeMeCNC RostockMAX v3.2 0.4 nozzle",
"SeeMeCNC RostockMAX v4 0.4 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.16mm Fine @SeeMeCNC Artemis 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
"0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
"0.20mm Standard @SeeMeCNC Artemis 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
"0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
"0.24mm Draft @SeeMeCNC Artemis 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
"0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
"0.28mm Extra Draft @SeeMeCNC Artemis 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4",
"0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"5"
],
"filament_z_hop": [
"0.2"
],
"filament_retraction_speed": [
"40"
],
"filament_deretraction_speed": [
"30"
],
"setting_id": "kqCiusj7FAzbmnro",
"filament_id": "SMCFG00104"
}
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC PETG 0.5 nozzle",
"inherits": "SeeMeCNC PETG",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC PETG 0.5 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 0.5 nozzle",
"SeeMeCNC BOSSdelta 500 0505 0.5 nozzle",
"SeeMeCNC BOSSdelta 500 0510 0.5 nozzle",
"SeeMeCNC BOSSdelta 500 0521 0.5 nozzle",
"SeeMeCNC BOSSdelta 300 0.5 nozzle",
"SeeMeCNC RostockMAX v3.2 0.5 nozzle",
"SeeMeCNC RostockMAX v4 0.5 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.20mm Fine @SeeMeCNC Artemis 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
"0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
"0.25mm Standard @SeeMeCNC Artemis 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
"0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
"0.30mm Draft @SeeMeCNC Artemis 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5",
"0.30mm Draft @SeeMeCNC RostockMAX v4 0.5",
"0.35mm Extra Draft @SeeMeCNC Artemis 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5",
"0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"6"
],
"filament_z_hop": [
"0.3"
],
"filament_retraction_speed": [
"40"
],
"filament_deretraction_speed": [
"30"
],
"setting_id": "85J1rc8KxOc7v2cF",
"filament_id": "SMCFG00105"
}
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC PETG 0.7 nozzle",
"inherits": "SeeMeCNC PETG",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC PETG 0.7 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 0.7 nozzle",
"SeeMeCNC BOSSdelta 500 0505 0.7 nozzle",
"SeeMeCNC BOSSdelta 500 0510 0.7 nozzle",
"SeeMeCNC BOSSdelta 500 0521 0.7 nozzle",
"SeeMeCNC BOSSdelta 300 0.7 nozzle",
"SeeMeCNC RostockMAX v3.2 0.7 nozzle",
"SeeMeCNC RostockMAX v4 0.7 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.28mm Fine @SeeMeCNC Artemis 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
"0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
"0.35mm Standard @SeeMeCNC Artemis 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7",
"0.35mm Standard @SeeMeCNC RostockMAX v4 0.7",
"0.42mm Draft @SeeMeCNC Artemis 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7",
"0.42mm Draft @SeeMeCNC RostockMAX v4 0.7",
"0.49mm Extra Draft @SeeMeCNC Artemis 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7",
"0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"6"
],
"filament_z_hop": [
"0.4"
],
"filament_retraction_speed": [
"40"
],
"filament_deretraction_speed": [
"30"
],
"setting_id": "QI1p2Hi76cWlfRwC",
"filament_id": "SMCFG00107"
}
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC PETG 1.0 nozzle",
"inherits": "SeeMeCNC PETG",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC PETG 1.0 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 1.0 nozzle",
"SeeMeCNC BOSSdelta 500 0505 1.0 nozzle",
"SeeMeCNC BOSSdelta 500 0510 1.0 nozzle",
"SeeMeCNC BOSSdelta 500 0521 1.0 nozzle",
"SeeMeCNC BOSSdelta 300 1.0 nozzle",
"SeeMeCNC RostockMAX v3.2 1.0 nozzle",
"SeeMeCNC RostockMAX v4 1.0 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.40mm Fine @SeeMeCNC Artemis 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
"0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
"0.50mm Standard @SeeMeCNC Artemis 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0",
"0.50mm Standard @SeeMeCNC RostockMAX v4 1.0",
"0.60mm Draft @SeeMeCNC Artemis 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0",
"0.60mm Draft @SeeMeCNC RostockMAX v4 1.0",
"0.70mm Extra Draft @SeeMeCNC Artemis 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0",
"0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"7"
],
"filament_z_hop": [
"0.5"
],
"filament_retraction_speed": [
"40"
],
"filament_deretraction_speed": [
"30"
],
"setting_id": "Njx1ZHccqqJzQ7AQ",
"filament_id": "SMCFG00110"
}
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC PETG-CF 0.4 nozzle",
"inherits": "SeeMeCNC PETG-CF",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC PETG-CF 0.4 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 0.4 nozzle",
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle",
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle",
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle",
"SeeMeCNC BOSSdelta 300 0.4 nozzle",
"SeeMeCNC RostockMAX v3.2 0.4 nozzle",
"SeeMeCNC RostockMAX v4 0.4 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.16mm Fine @SeeMeCNC Artemis 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
"0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
"0.20mm Standard @SeeMeCNC Artemis 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
"0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
"0.24mm Draft @SeeMeCNC Artemis 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
"0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
"0.28mm Extra Draft @SeeMeCNC Artemis 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4",
"0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"5"
],
"filament_z_hop": [
"0.2"
],
"filament_retraction_speed": [
"40"
],
"filament_deretraction_speed": [
"30"
],
"setting_id": "ulVlpkQVbvkSpmli",
"filament_id": "SMCFG00204"
}
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC PETG-CF 0.5 nozzle",
"inherits": "SeeMeCNC PETG-CF",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC PETG-CF 0.5 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 0.5 nozzle",
"SeeMeCNC BOSSdelta 500 0505 0.5 nozzle",
"SeeMeCNC BOSSdelta 500 0510 0.5 nozzle",
"SeeMeCNC BOSSdelta 500 0521 0.5 nozzle",
"SeeMeCNC BOSSdelta 300 0.5 nozzle",
"SeeMeCNC RostockMAX v3.2 0.5 nozzle",
"SeeMeCNC RostockMAX v4 0.5 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.20mm Fine @SeeMeCNC Artemis 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
"0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
"0.25mm Standard @SeeMeCNC Artemis 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
"0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
"0.30mm Draft @SeeMeCNC Artemis 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5",
"0.30mm Draft @SeeMeCNC RostockMAX v4 0.5",
"0.35mm Extra Draft @SeeMeCNC Artemis 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5",
"0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"5"
],
"filament_z_hop": [
"0.3"
],
"filament_retraction_speed": [
"40"
],
"filament_deretraction_speed": [
"30"
],
"setting_id": "jK9Gr2VDAnOKrkPW",
"filament_id": "SMCFG00205"
}
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC PETG-CF 0.7 nozzle",
"inherits": "SeeMeCNC PETG-CF",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC PETG-CF 0.7 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 0.7 nozzle",
"SeeMeCNC BOSSdelta 500 0505 0.7 nozzle",
"SeeMeCNC BOSSdelta 500 0510 0.7 nozzle",
"SeeMeCNC BOSSdelta 500 0521 0.7 nozzle",
"SeeMeCNC BOSSdelta 300 0.7 nozzle",
"SeeMeCNC RostockMAX v3.2 0.7 nozzle",
"SeeMeCNC RostockMAX v4 0.7 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.28mm Fine @SeeMeCNC Artemis 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
"0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
"0.35mm Standard @SeeMeCNC Artemis 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7",
"0.35mm Standard @SeeMeCNC RostockMAX v4 0.7",
"0.42mm Draft @SeeMeCNC Artemis 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7",
"0.42mm Draft @SeeMeCNC RostockMAX v4 0.7",
"0.49mm Extra Draft @SeeMeCNC Artemis 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7",
"0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"6"
],
"filament_z_hop": [
"0.4"
],
"filament_retraction_speed": [
"40"
],
"filament_deretraction_speed": [
"30"
],
"setting_id": "Gn57oqh6nMBO651i",
"filament_id": "SMCFG00207"
}
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC PETG-CF 1.0 nozzle",
"inherits": "SeeMeCNC PETG-CF",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC PETG-CF 1.0 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 1.0 nozzle",
"SeeMeCNC BOSSdelta 500 0505 1.0 nozzle",
"SeeMeCNC BOSSdelta 500 0510 1.0 nozzle",
"SeeMeCNC BOSSdelta 500 0521 1.0 nozzle",
"SeeMeCNC BOSSdelta 300 1.0 nozzle",
"SeeMeCNC RostockMAX v3.2 1.0 nozzle",
"SeeMeCNC RostockMAX v4 1.0 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.40mm Fine @SeeMeCNC Artemis 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
"0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
"0.50mm Standard @SeeMeCNC Artemis 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0",
"0.50mm Standard @SeeMeCNC RostockMAX v4 1.0",
"0.60mm Draft @SeeMeCNC Artemis 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0",
"0.60mm Draft @SeeMeCNC RostockMAX v4 1.0",
"0.70mm Extra Draft @SeeMeCNC Artemis 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0",
"0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"6"
],
"filament_z_hop": [
"0.5"
],
"filament_retraction_speed": [
"40"
],
"filament_deretraction_speed": [
"30"
],
"setting_id": "nzRT23S6xk1bxbDJ",
"filament_id": "SMCFG00210"
}
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC PLA 0.4 nozzle",
"inherits": "SeeMeCNC PLA",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC PLA 0.4 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 0.4 nozzle",
"SeeMeCNC BOSSdelta 500 0505 0.4 nozzle",
"SeeMeCNC BOSSdelta 500 0510 0.4 nozzle",
"SeeMeCNC BOSSdelta 500 0521 0.4 nozzle",
"SeeMeCNC BOSSdelta 300 0.4 nozzle",
"SeeMeCNC RostockMAX v3.2 0.4 nozzle",
"SeeMeCNC RostockMAX v4 0.4 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.16mm Fine @SeeMeCNC Artemis 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
"0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
"0.20mm Standard @SeeMeCNC Artemis 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
"0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
"0.24mm Draft @SeeMeCNC Artemis 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
"0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
"0.28mm Extra Draft @SeeMeCNC Artemis 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
"0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
"0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4",
"0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"5"
],
"filament_z_hop": [
"0.2"
],
"filament_retraction_speed": [
"45"
],
"filament_deretraction_speed": [
"35"
],
"setting_id": "k3oaCcJHHyAuRi6J",
"filament_id": "SMCFL00104"
}
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC PLA 0.5 nozzle",
"inherits": "SeeMeCNC PLA",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC PLA 0.5 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 0.5 nozzle",
"SeeMeCNC BOSSdelta 500 0505 0.5 nozzle",
"SeeMeCNC BOSSdelta 500 0510 0.5 nozzle",
"SeeMeCNC BOSSdelta 500 0521 0.5 nozzle",
"SeeMeCNC BOSSdelta 300 0.5 nozzle",
"SeeMeCNC RostockMAX v3.2 0.5 nozzle",
"SeeMeCNC RostockMAX v4 0.5 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.20mm Fine @SeeMeCNC Artemis 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
"0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
"0.25mm Standard @SeeMeCNC Artemis 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
"0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
"0.30mm Draft @SeeMeCNC Artemis 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5",
"0.30mm Draft @SeeMeCNC RostockMAX v4 0.5",
"0.35mm Extra Draft @SeeMeCNC Artemis 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
"0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
"0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5",
"0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"5"
],
"filament_z_hop": [
"0.3"
],
"filament_retraction_speed": [
"45"
],
"filament_deretraction_speed": [
"35"
],
"setting_id": "CcINW4WttiNsKvjf",
"filament_id": "SMCFL00105"
}
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC PLA 0.7 nozzle",
"inherits": "SeeMeCNC PLA",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC PLA 0.7 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 0.7 nozzle",
"SeeMeCNC BOSSdelta 500 0505 0.7 nozzle",
"SeeMeCNC BOSSdelta 500 0510 0.7 nozzle",
"SeeMeCNC BOSSdelta 500 0521 0.7 nozzle",
"SeeMeCNC BOSSdelta 300 0.7 nozzle",
"SeeMeCNC RostockMAX v3.2 0.7 nozzle",
"SeeMeCNC RostockMAX v4 0.7 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.28mm Fine @SeeMeCNC Artemis 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
"0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
"0.35mm Standard @SeeMeCNC Artemis 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7",
"0.35mm Standard @SeeMeCNC RostockMAX v4 0.7",
"0.42mm Draft @SeeMeCNC Artemis 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7",
"0.42mm Draft @SeeMeCNC RostockMAX v4 0.7",
"0.49mm Extra Draft @SeeMeCNC Artemis 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7",
"0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"6"
],
"filament_z_hop": [
"0.4"
],
"filament_retraction_speed": [
"45"
],
"filament_deretraction_speed": [
"35"
],
"setting_id": "pOuc1eXMLLOBqHuz",
"filament_id": "SMCFL00107"
}
@@ -1,65 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC PLA 1.0 nozzle",
"inherits": "SeeMeCNC PLA",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC PLA 1.0 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 1.0 nozzle",
"SeeMeCNC BOSSdelta 500 0505 1.0 nozzle",
"SeeMeCNC BOSSdelta 500 0510 1.0 nozzle",
"SeeMeCNC BOSSdelta 500 0521 1.0 nozzle",
"SeeMeCNC BOSSdelta 300 1.0 nozzle",
"SeeMeCNC RostockMAX v3.2 1.0 nozzle",
"SeeMeCNC RostockMAX v4 1.0 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.40mm Fine @SeeMeCNC Artemis 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
"0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
"0.50mm Standard @SeeMeCNC Artemis 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0",
"0.50mm Standard @SeeMeCNC RostockMAX v4 1.0",
"0.60mm Draft @SeeMeCNC Artemis 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0",
"0.60mm Draft @SeeMeCNC RostockMAX v4 1.0",
"0.70mm Extra Draft @SeeMeCNC Artemis 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
"0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
"0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0",
"0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"6"
],
"filament_z_hop": [
"0.5"
],
"filament_retraction_speed": [
"45"
],
"filament_deretraction_speed": [
"35"
],
"setting_id": "jSvqBk6R6HAaTRxk",
"filament_id": "SMCFL00110"
}
@@ -1,51 +0,0 @@
{
"type": "filament",
"name": "SeeMeCNC TPU 0.7 nozzle",
"inherits": "SeeMeCNC TPU",
"from": "System",
"instantiation": "true",
"filament_settings_id": [
"SeeMeCNC TPU 0.7 nozzle"
],
"compatible_printers": [
"SeeMeCNC Artemis 0.7 nozzle",
"SeeMeCNC BOSSdelta 500 0505 0.7 nozzle",
"SeeMeCNC BOSSdelta 500 0510 0.7 nozzle",
"SeeMeCNC BOSSdelta 500 0521 0.7 nozzle",
"SeeMeCNC BOSSdelta 300 0.7 nozzle",
"SeeMeCNC RostockMAX v3.2 0.7 nozzle",
"SeeMeCNC RostockMAX v4 0.7 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [
"0.30mm TPU Solid @SeeMeCNC Artemis 0.7",
"0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7",
"0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7",
"0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7",
"0.35mm TPU Vase @SeeMeCNC Artemis 0.7",
"0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7",
"0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7",
"0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7",
"0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7",
"0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7",
"0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7"
],
"compatible_prints_condition": "",
"filament_retraction_length": [
"7"
],
"filament_z_hop": [
"0.3"
],
"filament_retraction_speed": [
"30"
],
"filament_deretraction_speed": [
"30"
],
"setting_id": "4LUkyKiKFb96OeC0",
"filament_id": "SMCFU00107"
}
+352 -352
View File
@@ -194,18 +194,42 @@
"name": "fdm_process_idex",
"sub_path": "process/fdm_process_idex.json"
},
{
"name": "fdm_process_U1_0.06_nozzle_0.2",
"sub_path": "process/fdm_process_U1_0.06_nozzle_0.2.json"
},
{
"name": "fdm_process_U1_0.08",
"sub_path": "process/fdm_process_U1_0.08.json"
},
{
"name": "fdm_process_U1_0.08_nozzle_0.2",
"sub_path": "process/fdm_process_U1_0.08_nozzle_0.2.json"
},
{
"name": "fdm_process_U1_0.10_nozzle_0.2",
"sub_path": "process/fdm_process_U1_0.10_nozzle_0.2.json"
},
{
"name": "fdm_process_U1_0.12",
"sub_path": "process/fdm_process_U1_0.12.json"
},
{
"name": "fdm_process_U1_0.12_nozzle_0.2",
"sub_path": "process/fdm_process_U1_0.12_nozzle_0.2.json"
},
{
"name": "fdm_process_U1_0.14_nozzle_0.2",
"sub_path": "process/fdm_process_U1_0.14_nozzle_0.2.json"
},
{
"name": "fdm_process_U1_0.16",
"sub_path": "process/fdm_process_U1_0.16.json"
},
{
"name": "fdm_process_U1_0.18_nozzle_0.6",
"sub_path": "process/fdm_process_U1_0.18_nozzle_0.6.json"
},
{
"name": "fdm_process_U1_0.20",
"sub_path": "process/fdm_process_U1_0.20.json"
@@ -214,14 +238,58 @@
"name": "fdm_process_U1_0.24",
"sub_path": "process/fdm_process_U1_0.24.json"
},
{
"name": "fdm_process_U1_0.24_nozzle_0.6",
"sub_path": "process/fdm_process_U1_0.24_nozzle_0.6.json"
},
{
"name": "fdm_process_U1_0.24_nozzle_0.8",
"sub_path": "process/fdm_process_U1_0.24_nozzle_0.8.json"
},
{
"name": "fdm_process_U1_0.28",
"sub_path": "process/fdm_process_U1_0.28.json"
},
{
"name": "fdm_process_U1_0.2_common",
"sub_path": "process/fdm_process_U1_0.2_common.json"
},
{
"name": "fdm_process_U1_0.30_nozzle_0.6",
"sub_path": "process/fdm_process_U1_0.30_nozzle_0.6.json"
},
{
"name": "fdm_process_U1_0.32_nozzle_0.8",
"sub_path": "process/fdm_process_U1_0.32_nozzle_0.8.json"
},
{
"name": "fdm_process_U1_0.36_nozzle_0.6",
"sub_path": "process/fdm_process_U1_0.36_nozzle_0.6.json"
},
{
"name": "fdm_process_U1_0.40_nozzle_0.8",
"sub_path": "process/fdm_process_U1_0.40_nozzle_0.8.json"
},
{
"name": "fdm_process_U1_0.42_nozzle_0.6",
"sub_path": "process/fdm_process_U1_0.42_nozzle_0.6.json"
},
{
"name": "fdm_process_U1_0.48_nozzle_0.8",
"sub_path": "process/fdm_process_U1_0.48_nozzle_0.8.json"
},
{
"name": "fdm_process_U1_0.56_nozzle_0.8",
"sub_path": "process/fdm_process_U1_0.56_nozzle_0.8.json"
},
{
"name": "fdm_process_U1_0.6_common",
"sub_path": "process/fdm_process_U1_0.6_common.json"
},
{
"name": "fdm_process_U1_0.8_common",
"sub_path": "process/fdm_process_U1_0.8_common.json"
},
{
"name": "0.08 Extra Fine @Snapmaker Artisan (0.4 nozzle)",
"sub_path": "process/0.08 Extra Fine @Snapmaker Artisan (0.4 nozzle).json"
@@ -402,6 +470,14 @@
"name": "0.48 Draft @Snapmaker J1 (0.8 nozzle)",
"sub_path": "process/0.48 Draft @Snapmaker J1 (0.8 nozzle).json"
},
{
"name": "0.06 High Quality @Snapmaker U1 (0.2 nozzle)",
"sub_path": "process/0.06 High Quality @Snapmaker U1 (0.2 nozzle).json"
},
{
"name": "0.06 Standard @Snapmaker U1 (0.2 nozzle)",
"sub_path": "process/0.06 Standard @Snapmaker U1 (0.2 nozzle).json"
},
{
"name": "0.08 Extra Fine @Snapmaker U1 (0.4 nozzle)",
"sub_path": "process/0.08 Extra Fine @Snapmaker U1 (0.4 nozzle).json"
@@ -410,6 +486,22 @@
"name": "0.08 High Quality @Snapmaker U1 (0.4 nozzle)",
"sub_path": "process/0.08 High Quality @Snapmaker U1 (0.4 nozzle).json"
},
{
"name": "0.08 High Quality @Snapmaker U1 (0.2 nozzle)",
"sub_path": "process/0.08 High Quality @Snapmaker U1 (0.2 nozzle).json"
},
{
"name": "0.08 Standard @Snapmaker U1 (0.2 nozzle)",
"sub_path": "process/0.08 Standard @Snapmaker U1 (0.2 nozzle).json"
},
{
"name": "0.10 High Quality @Snapmaker U1 (0.2 nozzle)",
"sub_path": "process/0.10 High Quality @Snapmaker U1 (0.2 nozzle).json"
},
{
"name": "0.10 Standard @Snapmaker U1 (0.2 nozzle)",
"sub_path": "process/0.10 Standard @Snapmaker U1 (0.2 nozzle).json"
},
{
"name": "0.12 Fine @Snapmaker U1 (0.4 nozzle)",
"sub_path": "process/0.12 Fine @Snapmaker U1 (0.4 nozzle).json"
@@ -418,6 +510,14 @@
"name": "0.12 High Quality @Snapmaker U1 (0.4 nozzle)",
"sub_path": "process/0.12 High Quality @Snapmaker U1 (0.4 nozzle).json"
},
{
"name": "0.12 Standard @Snapmaker U1 (0.2 nozzle)",
"sub_path": "process/0.12 Standard @Snapmaker U1 (0.2 nozzle).json"
},
{
"name": "0.14 Standard @Snapmaker U1 (0.2 nozzle)",
"sub_path": "process/0.14 Standard @Snapmaker U1 (0.2 nozzle).json"
},
{
"name": "0.16 High Quality @Snapmaker U1 (0.4 nozzle)",
"sub_path": "process/0.16 High Quality @Snapmaker U1 (0.4 nozzle).json"
@@ -426,6 +526,10 @@
"name": "0.16 Optimal @Snapmaker U1 (0.4 nozzle)",
"sub_path": "process/0.16 Optimal @Snapmaker U1 (0.4 nozzle).json"
},
{
"name": "0.18 Standard @Snapmaker U1 (0.6 nozzle)",
"sub_path": "process/0.18 Standard @Snapmaker U1 (0.6 nozzle).json"
},
{
"name": "0.20 Quality @Snapmaker U1 (0.4 nozzle)",
"sub_path": "process/0.20 Quality @Snapmaker U1 (0.4 nozzle).json"
@@ -454,10 +558,50 @@
"name": "0.24 Draft @Snapmaker U1 (0.4 nozzle)",
"sub_path": "process/0.24 Draft @Snapmaker U1 (0.4 nozzle).json"
},
{
"name": "0.24 Standard @Snapmaker U1 (0.6 nozzle)",
"sub_path": "process/0.24 Standard @Snapmaker U1 (0.6 nozzle).json"
},
{
"name": "0.24 Standard @Snapmaker U1 (0.8 nozzle)",
"sub_path": "process/0.24 Standard @Snapmaker U1 (0.8 nozzle).json"
},
{
"name": "0.28 Extra Draft @Snapmaker U1 (0.4 nozzle)",
"sub_path": "process/0.28 Extra Draft @Snapmaker U1 (0.4 nozzle).json"
},
{
"name": "0.30 Standard @Snapmaker U1 (0.6 nozzle)",
"sub_path": "process/0.30 Standard @Snapmaker U1 (0.6 nozzle).json"
},
{
"name": "0.30 Strength @Snapmaker U1 (0.6 nozzle)",
"sub_path": "process/0.30 Strength @Snapmaker U1 (0.6 nozzle).json"
},
{
"name": "0.32 Standard @Snapmaker U1 (0.8 nozzle)",
"sub_path": "process/0.32 Standard @Snapmaker U1 (0.8 nozzle).json"
},
{
"name": "0.36 Standard @Snapmaker U1 (0.6 nozzle)",
"sub_path": "process/0.36 Standard @Snapmaker U1 (0.6 nozzle).json"
},
{
"name": "0.40 Standard @Snapmaker U1 (0.8 nozzle)",
"sub_path": "process/0.40 Standard @Snapmaker U1 (0.8 nozzle).json"
},
{
"name": "0.42 Standard @Snapmaker U1 (0.6 nozzle)",
"sub_path": "process/0.42 Standard @Snapmaker U1 (0.6 nozzle).json"
},
{
"name": "0.48 Standard @Snapmaker U1 (0.8 nozzle)",
"sub_path": "process/0.48 Standard @Snapmaker U1 (0.8 nozzle).json"
},
{
"name": "0.56 Standard @Snapmaker U1 (0.8 nozzle)",
"sub_path": "process/0.56 Standard @Snapmaker U1 (0.8 nozzle).json"
},
{
"name": "0.20 Standard @Snapmaker U1 (0.6 nozzle)",
"sub_path": "process/0.20 Standard @Snapmaker U1 (0.6 nozzle).json"
@@ -473,150 +617,6 @@
{
"name": "0.06 Standard @Snapmaker Artisan (0.2 nozzle)",
"sub_path": "process/0.06 Standard @Snapmaker Artisan (0.2 nozzle).json"
},
{
"name": "fdm_process_U1_0.2_common",
"sub_path": "process/fdm_process_U1_0.2_common.json"
},
{
"name": "fdm_process_U1_0.8_common",
"sub_path": "process/fdm_process_U1_0.8_common.json"
},
{
"name": "fdm_process_U1_0.06_nozzle_0.2",
"sub_path": "process/fdm_process_U1_0.06_nozzle_0.2.json"
},
{
"name": "fdm_process_U1_0.08_nozzle_0.2",
"sub_path": "process/fdm_process_U1_0.08_nozzle_0.2.json"
},
{
"name": "fdm_process_U1_0.10_nozzle_0.2",
"sub_path": "process/fdm_process_U1_0.10_nozzle_0.2.json"
},
{
"name": "fdm_process_U1_0.12_nozzle_0.2",
"sub_path": "process/fdm_process_U1_0.12_nozzle_0.2.json"
},
{
"name": "fdm_process_U1_0.14_nozzle_0.2",
"sub_path": "process/fdm_process_U1_0.14_nozzle_0.2.json"
},
{
"name": "fdm_process_U1_0.18_nozzle_0.6",
"sub_path": "process/fdm_process_U1_0.18_nozzle_0.6.json"
},
{
"name": "fdm_process_U1_0.24_nozzle_0.6",
"sub_path": "process/fdm_process_U1_0.24_nozzle_0.6.json"
},
{
"name": "fdm_process_U1_0.24_nozzle_0.8",
"sub_path": "process/fdm_process_U1_0.24_nozzle_0.8.json"
},
{
"name": "fdm_process_U1_0.30_nozzle_0.6",
"sub_path": "process/fdm_process_U1_0.30_nozzle_0.6.json"
},
{
"name": "fdm_process_U1_0.32_nozzle_0.8",
"sub_path": "process/fdm_process_U1_0.32_nozzle_0.8.json"
},
{
"name": "fdm_process_U1_0.36_nozzle_0.6",
"sub_path": "process/fdm_process_U1_0.36_nozzle_0.6.json"
},
{
"name": "fdm_process_U1_0.40_nozzle_0.8",
"sub_path": "process/fdm_process_U1_0.40_nozzle_0.8.json"
},
{
"name": "fdm_process_U1_0.42_nozzle_0.6",
"sub_path": "process/fdm_process_U1_0.42_nozzle_0.6.json"
},
{
"name": "fdm_process_U1_0.48_nozzle_0.8",
"sub_path": "process/fdm_process_U1_0.48_nozzle_0.8.json"
},
{
"name": "fdm_process_U1_0.56_nozzle_0.8",
"sub_path": "process/fdm_process_U1_0.56_nozzle_0.8.json"
},
{
"name": "0.06 High Quality @Snapmaker U1 (0.2 nozzle)",
"sub_path": "process/0.06 High Quality @Snapmaker U1 (0.2 nozzle).json"
},
{
"name": "0.06 Standard @Snapmaker U1 (0.2 nozzle)",
"sub_path": "process/0.06 Standard @Snapmaker U1 (0.2 nozzle).json"
},
{
"name": "0.08 High Quality @Snapmaker U1 (0.2 nozzle)",
"sub_path": "process/0.08 High Quality @Snapmaker U1 (0.2 nozzle).json"
},
{
"name": "0.08 Standard @Snapmaker U1 (0.2 nozzle)",
"sub_path": "process/0.08 Standard @Snapmaker U1 (0.2 nozzle).json"
},
{
"name": "0.10 High Quality @Snapmaker U1 (0.2 nozzle)",
"sub_path": "process/0.10 High Quality @Snapmaker U1 (0.2 nozzle).json"
},
{
"name": "0.10 Standard @Snapmaker U1 (0.2 nozzle)",
"sub_path": "process/0.10 Standard @Snapmaker U1 (0.2 nozzle).json"
},
{
"name": "0.12 Standard @Snapmaker U1 (0.2 nozzle)",
"sub_path": "process/0.12 Standard @Snapmaker U1 (0.2 nozzle).json"
},
{
"name": "0.14 Standard @Snapmaker U1 (0.2 nozzle)",
"sub_path": "process/0.14 Standard @Snapmaker U1 (0.2 nozzle).json"
},
{
"name": "0.18 Standard @Snapmaker U1 (0.6 nozzle)",
"sub_path": "process/0.18 Standard @Snapmaker U1 (0.6 nozzle).json"
},
{
"name": "0.24 Standard @Snapmaker U1 (0.6 nozzle)",
"sub_path": "process/0.24 Standard @Snapmaker U1 (0.6 nozzle).json"
},
{
"name": "0.30 Standard @Snapmaker U1 (0.6 nozzle)",
"sub_path": "process/0.30 Standard @Snapmaker U1 (0.6 nozzle).json"
},
{
"name": "0.30 Strength @Snapmaker U1 (0.6 nozzle)",
"sub_path": "process/0.30 Strength @Snapmaker U1 (0.6 nozzle).json"
},
{
"name": "0.36 Standard @Snapmaker U1 (0.6 nozzle)",
"sub_path": "process/0.36 Standard @Snapmaker U1 (0.6 nozzle).json"
},
{
"name": "0.42 Standard @Snapmaker U1 (0.6 nozzle)",
"sub_path": "process/0.42 Standard @Snapmaker U1 (0.6 nozzle).json"
},
{
"name": "0.24 Standard @Snapmaker U1 (0.8 nozzle)",
"sub_path": "process/0.24 Standard @Snapmaker U1 (0.8 nozzle).json"
},
{
"name": "0.32 Standard @Snapmaker U1 (0.8 nozzle)",
"sub_path": "process/0.32 Standard @Snapmaker U1 (0.8 nozzle).json"
},
{
"name": "0.40 Standard @Snapmaker U1 (0.8 nozzle)",
"sub_path": "process/0.40 Standard @Snapmaker U1 (0.8 nozzle).json"
},
{
"name": "0.48 Standard @Snapmaker U1 (0.8 nozzle)",
"sub_path": "process/0.48 Standard @Snapmaker U1 (0.8 nozzle).json"
},
{
"name": "0.56 Standard @Snapmaker U1 (0.8 nozzle)",
"sub_path": "process/0.56 Standard @Snapmaker U1 (0.8 nozzle).json"
}
],
"filament_list": [
@@ -624,14 +624,26 @@
"name": "PolyTerra PLA @0.2 nozzle",
"sub_path": "filament/Polymaker/PolyTerra PLA @0.2 nozzle.json"
},
{
"name": "Snapmaker PLA Basic @U1 base",
"sub_path": "filament/Snapmaker PLA Basic @U1 base.json"
},
{
"name": "Snapmaker PLA Lite @U1 base",
"sub_path": "filament/Snapmaker PLA Lite @U1 base.json"
},
{
"name": "Snapmaker PLA Matte @U1 base2",
"sub_path": "filament/Snapmaker PLA Matte @U1 base2.json"
},
{
"name": "Snapmaker PLA SnapSpeed @U1 base",
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 base.json"
},
{
"name": "Snapmaker PLA SnapSpeed @U1 base2",
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 base2.json"
},
{
"name": "Snapmaker TPU 95A @U1 base",
"sub_path": "filament/Snapmaker TPU 95A @U1 base.json"
@@ -648,14 +660,62 @@
"name": "PolyTerra J1 PLA @0.2 nozzle",
"sub_path": "filament/Polymaker/PolyTerra J1 PLA @0.2 nozzle.json"
},
{
"name": "Snapmaker PLA Basic @U1",
"sub_path": "filament/Snapmaker PLA Basic @U1.json"
},
{
"name": "Snapmaker PLA Full Spectrum @U1 0.4 nozzle",
"sub_path": "filament/Snapmaker PLA Full Spectrum @U1 0.4 nozzle.json"
},
{
"name": "Snapmaker PLA Silk @U1",
"sub_path": "filament/Snapmaker PLA Silk @U1.json"
},
{
"name": "Snapmaker PLA Silk @U1 0.2 nozzle",
"sub_path": "filament/Snapmaker PLA Silk @U1 0.2 nozzle.json"
},
{
"name": "Snapmaker PLA Silk @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker PLA Silk @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker PLA Silk @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker PLA Silk @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker PLA Lite @U1",
"sub_path": "filament/Snapmaker PLA Lite @U1.json"
},
{
"name": "Snapmaker PLA Matte @U1 0.2 nozzle",
"sub_path": "filament/Snapmaker PLA Matte @U1 0.2 nozzle.json"
},
{
"name": "Snapmaker PLA Matte @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker PLA Matte @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker PLA Matte @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker PLA Matte @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker PLA SnapSpeed @U1",
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1.json"
},
{
"name": "Snapmaker PLA SnapSpeed @U1 0.2 nozzle",
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 0.2 nozzle.json"
},
{
"name": "Snapmaker PLA SnapSpeed @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker PLA SnapSpeed @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker TPU 95A @U1",
"sub_path": "filament/Snapmaker TPU 95A @U1.json"
@@ -840,6 +900,14 @@
"name": "Snapmaker PETG @base",
"sub_path": "filament/Snapmaker PETG @base.json"
},
{
"name": "Snapmaker PETG HF @U1 base2",
"sub_path": "filament/Snapmaker PETG HF @U1 base2.json"
},
{
"name": "Snapmaker PETG Translucent @U1 base",
"sub_path": "filament/Snapmaker PETG Translucent @U1 base.json"
},
{
"name": "Snapmaker PETG-CF @U1 base",
"sub_path": "filament/Snapmaker PETG-CF @U1 base.json"
@@ -988,6 +1056,10 @@
"name": "Polymaker PLA @Snapmaker U1 base",
"sub_path": "filament/Polymaker/Polymaker PLA @Snapmaker U1 base.json"
},
{
"name": "Polymaker PLA @U1 base",
"sub_path": "filament/Polymaker PLA @U1 base.json"
},
{
"name": "Polymaker PLA Pro @Base",
"sub_path": "filament/Polymaker/Polymaker PLA Pro @Base.json"
@@ -1048,6 +1120,10 @@
"name": "Snapmaker PLA @base",
"sub_path": "filament/Snapmaker PLA @base.json"
},
{
"name": "Snapmaker PLA Glow @U1 base",
"sub_path": "filament/Snapmaker PLA Glow @U1 base.json"
},
{
"name": "Snapmaker PLA Metal @U1 base",
"sub_path": "filament/Snapmaker PLA Metal @U1 base.json"
@@ -1060,6 +1136,34 @@
"name": "Snapmaker PLA Silk @base",
"sub_path": "filament/Snapmaker PLA Silk @base.json"
},
{
"name": "Snapmaker PLA Translucent @U1 base",
"sub_path": "filament/Snapmaker PLA Translucent @U1 base.json"
},
{
"name": "Snapmaker PLA Wood @U1 0.4 nozzle",
"sub_path": "filament/Snapmaker PLA Wood @U1 0.4 nozzle.json"
},
{
"name": "Snapmaker PLA Wood @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker PLA Wood @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker PLA Wood @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker PLA Wood @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker PLA-CF @U1 0.4 nozzle",
"sub_path": "filament/Snapmaker PLA-CF @U1 0.4 nozzle.json"
},
{
"name": "Snapmaker PLA-CF @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker PLA-CF @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker PLA-CF @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker PLA-CF @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker PLA-CF @U1 base",
"sub_path": "filament/Snapmaker PLA-CF @U1 base.json"
@@ -1096,6 +1200,30 @@
"name": "Snapmaker J1 TPU @base",
"sub_path": "filament/Snapmaker J1 TPU @base.json"
},
{
"name": "Snapmaker TPU 90A @U1",
"sub_path": "filament/Snapmaker TPU 90A @U1.json"
},
{
"name": "Snapmaker TPU 90A @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker TPU 90A @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker TPU 90A @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker TPU 90A @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker TPU 95A HF @U1",
"sub_path": "filament/Snapmaker TPU 95A HF @U1.json"
},
{
"name": "Snapmaker TPU 95A HF @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker TPU 95A HF @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker TPU 95A HF @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker TPU 95A HF @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker TPU @U1 base",
"sub_path": "filament/Snapmaker TPU @U1 base.json"
@@ -1316,6 +1444,34 @@
"name": "Snapmaker PETG @0.2 nozzle",
"sub_path": "filament/Snapmaker PETG @0.2 nozzle.json"
},
{
"name": "Snapmaker PETG HF @U1 0.2 nozzle",
"sub_path": "filament/Snapmaker PETG HF @U1 0.2 nozzle.json"
},
{
"name": "Snapmaker PETG HF @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker PETG HF @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker PETG HF @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker PETG HF @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker PETG Translucent @U1 0.2 nozzle",
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.2 nozzle.json"
},
{
"name": "Snapmaker PETG Translucent @U1 0.4 nozzle",
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.4 nozzle.json"
},
{
"name": "Snapmaker PETG Translucent @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker PETG Translucent @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker PETG-CF @U1",
"sub_path": "filament/Snapmaker PETG-CF @U1.json"
@@ -1460,6 +1616,18 @@
"name": "Polymaker PLA @Snapmaker U1",
"sub_path": "filament/Polymaker/Polymaker PLA @Snapmaker U1.json"
},
{
"name": "Polymaker General PLA Family @U1",
"sub_path": "filament/Polymaker General PLA Family @U1.json"
},
{
"name": "Polymaker Silk PLA Family @U1",
"sub_path": "filament/Polymaker Silk PLA Family @U1.json"
},
{
"name": "Polymaker Tough PLA Family @U1",
"sub_path": "filament/Polymaker Tough PLA Family @U1.json"
},
{
"name": "Polymaker PLA Pro @Snapmaker U1",
"sub_path": "filament/Polymaker/Polymaker PLA Pro @Snapmaker U1.json"
@@ -1560,6 +1728,10 @@
"name": "Snapmaker PLA",
"sub_path": "filament/Snapmaker PLA.json"
},
{
"name": "Snapmaker PLA Glow @U1 0.4 nozzle",
"sub_path": "filament/Snapmaker PLA Glow @U1 0.4 nozzle.json"
},
{
"name": "Snapmaker PLA Metal @U1",
"sub_path": "filament/Snapmaker PLA Metal @U1.json"
@@ -1572,6 +1744,22 @@
"name": "Snapmaker PLA Silk @0.2 nozzle",
"sub_path": "filament/Snapmaker PLA Silk @0.2 nozzle.json"
},
{
"name": "Snapmaker PLA Translucent @U1 0.2 nozzle",
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.2 nozzle.json"
},
{
"name": "Snapmaker PLA Translucent @U1 0.4 nozzle",
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.4 nozzle.json"
},
{
"name": "Snapmaker PLA Translucent @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker PLA Translucent @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker PLA-CF",
"sub_path": "filament/Snapmaker PLA-CF.json"
@@ -1612,6 +1800,14 @@
"name": "Snapmaker PVA @U1",
"sub_path": "filament/Snapmaker PVA @U1.json"
},
{
"name": "Snapmaker PVA @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker PVA @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker PVA @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker PVA @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker PVA",
"sub_path": "filament/Snapmaker PVA.json"
@@ -1712,26 +1908,6 @@
"name": "Snapmaker Breakaway Support For PLA @U1",
"sub_path": "filament/Snapmaker Breakaway Support For PLA @U1.json"
},
{
"name": "PolyTerra J1 PLA",
"sub_path": "filament/Polymaker/PolyTerra J1 PLA.json"
},
{
"name": "Snapmaker PLA Matte @U1 base",
"sub_path": "filament/Snapmaker PLA Matte @U1 base.json"
},
{
"name": "Polymaker PLA @U1 base",
"sub_path": "filament/Polymaker PLA @U1 base.json"
},
{
"name": "Polymaker Silk PLA Family @U1",
"sub_path": "filament/Polymaker Silk PLA Family @U1.json"
},
{
"name": "Polymaker Tough PLA Family @U1",
"sub_path": "filament/Polymaker Tough PLA Family @U1.json"
},
{
"name": "Snapmaker Breakaway Support For PLA @U1 0.2 nozzle",
"sub_path": "filament/Snapmaker Breakaway Support For PLA @U1 0.2 nozzle.json"
@@ -1745,188 +1921,12 @@
"sub_path": "filament/Snapmaker Breakaway Support For PLA @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker PETG HF @U1 base2",
"sub_path": "filament/Snapmaker PETG HF @U1 base2.json"
"name": "PolyTerra J1 PLA",
"sub_path": "filament/Polymaker/PolyTerra J1 PLA.json"
},
{
"name": "Snapmaker PETG Translucent @U1 base",
"sub_path": "filament/Snapmaker PETG Translucent @U1 base.json"
},
{
"name": "Snapmaker PLA Basic @U1 base",
"sub_path": "filament/Snapmaker PLA Basic @U1 base.json"
},
{
"name": "Snapmaker PLA Full Spectrum @U1 0.4 nozzle",
"sub_path": "filament/Snapmaker PLA Full Spectrum @U1 0.4 nozzle.json"
},
{
"name": "Snapmaker PLA Glow @U1 base",
"sub_path": "filament/Snapmaker PLA Glow @U1 base.json"
},
{
"name": "Snapmaker PLA Matte @U1 base2",
"sub_path": "filament/Snapmaker PLA Matte @U1 base2.json"
},
{
"name": "Snapmaker PLA Silk @U1 0.2 nozzle",
"sub_path": "filament/Snapmaker PLA Silk @U1 0.2 nozzle.json"
},
{
"name": "Snapmaker PLA Silk @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker PLA Silk @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker PLA Silk @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker PLA Silk @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker PLA SnapSpeed @U1 base2",
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 base2.json"
},
{
"name": "Snapmaker PLA Translucent @U1 base",
"sub_path": "filament/Snapmaker PLA Translucent @U1 base.json"
},
{
"name": "Snapmaker PLA Wood @U1 0.4 nozzle",
"sub_path": "filament/Snapmaker PLA Wood @U1 0.4 nozzle.json"
},
{
"name": "Snapmaker PLA Wood @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker PLA Wood @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker PLA Wood @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker PLA Wood @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker PLA-CF @U1 0.4 nozzle",
"sub_path": "filament/Snapmaker PLA-CF @U1 0.4 nozzle.json"
},
{
"name": "Snapmaker PLA-CF @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker PLA-CF @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker PLA-CF @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker PLA-CF @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker PVA @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker PVA @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker PVA @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker PVA @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker TPU 90A @U1",
"sub_path": "filament/Snapmaker TPU 90A @U1.json"
},
{
"name": "Snapmaker TPU 90A @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker TPU 90A @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker TPU 90A @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker TPU 90A @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker TPU 95A HF @U1",
"sub_path": "filament/Snapmaker TPU 95A HF @U1.json"
},
{
"name": "Snapmaker TPU 95A HF @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker TPU 95A HF @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker TPU 95A HF @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker TPU 95A HF @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker PLA Silk @U1",
"sub_path": "filament/Snapmaker PLA Silk @U1.json"
},
{
"name": "Polymaker General PLA Family @U1",
"sub_path": "filament/Polymaker General PLA Family @U1.json"
},
{
"name": "Snapmaker PETG HF @U1 0.2 nozzle",
"sub_path": "filament/Snapmaker PETG HF @U1 0.2 nozzle.json"
},
{
"name": "Snapmaker PETG HF @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker PETG HF @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker PETG HF @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker PETG HF @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker PETG Translucent @U1 0.2 nozzle",
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.2 nozzle.json"
},
{
"name": "Snapmaker PETG Translucent @U1 0.4 nozzle",
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.4 nozzle.json"
},
{
"name": "Snapmaker PETG Translucent @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker PETG Translucent @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker PLA Basic @U1",
"sub_path": "filament/Snapmaker PLA Basic @U1.json"
},
{
"name": "Snapmaker PLA Glow @U1 0.4 nozzle",
"sub_path": "filament/Snapmaker PLA Glow @U1 0.4 nozzle.json"
},
{
"name": "Snapmaker PLA Matte @U1 0.2 nozzle",
"sub_path": "filament/Snapmaker PLA Matte @U1 0.2 nozzle.json"
},
{
"name": "Snapmaker PLA Matte @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker PLA Matte @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker PLA Matte @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker PLA Matte @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker PLA SnapSpeed @U1 0.2 nozzle",
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 0.2 nozzle.json"
},
{
"name": "Snapmaker PLA SnapSpeed @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker PLA SnapSpeed @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 0.8 nozzle.json"
},
{
"name": "Snapmaker PLA Translucent @U1 0.2 nozzle",
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.2 nozzle.json"
},
{
"name": "Snapmaker PLA Translucent @U1 0.4 nozzle",
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.4 nozzle.json"
},
{
"name": "Snapmaker PLA Translucent @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker PLA Translucent @U1 0.8 nozzle",
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.8 nozzle.json"
"name": "Snapmaker PLA Matte @U1 base",
"sub_path": "filament/Snapmaker PLA Matte @U1 base.json"
}
],
"machine_list": [
@@ -2050,6 +2050,10 @@
"name": "fdm_a400",
"sub_path": "machine/fdm_a400.json"
},
{
"name": "Snapmaker U1 (0.2 nozzle)",
"sub_path": "machine/Snapmaker U1 (0.2 nozzle).json"
},
{
"name": "Snapmaker U1 (0.4 nozzle)",
"sub_path": "machine/Snapmaker U1 (0.4 nozzle).json"
@@ -2062,6 +2066,10 @@
"name": "Snapmaker U1 (0.6 nozzle)",
"sub_path": "machine/Snapmaker U1 (0.6 nozzle).json"
},
{
"name": "Snapmaker U1 (0.8 nozzle)",
"sub_path": "machine/Snapmaker U1 (0.8 nozzle).json"
},
{
"name": "Snapmaker A250 BKit (0.2 nozzle)",
"sub_path": "machine/Snapmaker A250 BKit (0.2 nozzle).json"
@@ -2325,14 +2333,6 @@
{
"name": "Snapmaker A350 Dual QS+B Kit (0.8 nozzle)",
"sub_path": "machine/Snapmaker A350 Dual QS+B Kit (0.8 nozzle).json"
},
{
"name": "Snapmaker U1 (0.2 nozzle)",
"sub_path": "machine/Snapmaker U1 (0.2 nozzle).json"
},
{
"name": "Snapmaker U1 (0.8 nozzle)",
"sub_path": "machine/Snapmaker U1 (0.8 nozzle).json"
}
]
}
+78 -78
View File
@@ -201,82 +201,66 @@
}
],
"filament_list": [
{
"name": "Generic ABS @Sovol SV08 MAX",
"sub_path": "filament/Generic ABS @Sovol SV08 MAX.json"
},
{
"name": "Generic PC @Sovol SV08 MAX",
"sub_path": "filament/Generic PC @Sovol SV08 MAX.json"
},
{
"name": "Generic PETG @Sovol SV08 MAX",
"sub_path": "filament/Generic PETG @Sovol SV08 MAX.json"
},
{
"name": "Generic PLA @Sovol SV08 MAX",
"sub_path": "filament/Generic PLA @Sovol SV08 MAX.json"
},
{
"name": "Generic PLA Silk @Sovol SV08 MAX",
"sub_path": "filament/Generic PLA Silk @Sovol SV08 MAX.json"
},
{
"name": "Generic TPU @Sovol SV08 MAX",
"sub_path": "filament/Generic TPU @Sovol SV08 MAX.json"
},
{
"name": "Polymaker PETG @Sovol SV08 MAX",
"sub_path": "filament/Polymaker PETG @Sovol SV08 MAX.json"
},
{
"name": "SUNLU PETG @Sovol SV08 MAX",
"sub_path": "filament/SUNLU PETG @Sovol SV08 MAX.json"
},
{
"name": "Generic ABS @Sovol SV06 ACE",
"sub_path": "filament/Generic ABS @Sovol SV06 ACE.json"
},
{
"name": "Generic PETG @Sovol SV06 ACE",
"sub_path": "filament/Generic PETG @Sovol SV06 ACE.json"
},
{
"name": "Generic PLA @Sovol SV06 ACE",
"sub_path": "filament/Generic PLA @Sovol SV06 ACE.json"
},
{
"name": "Generic TPU @Sovol SV06 ACE",
"sub_path": "filament/Generic TPU @Sovol SV06 ACE.json"
},
{
"name": "Generic ABS @Sovol SV06 Plus ACE",
"sub_path": "filament/Generic ABS @Sovol SV06 Plus ACE.json"
},
{
"name": "Generic ABS @Sovol SV08",
"sub_path": "filament/Generic ABS @Sovol SV08.json"
},
{
"name": "Generic ABS @Sovol SV08 MAX",
"sub_path": "filament/Generic ABS @Sovol SV08 MAX.json"
},
{
"name": "Generic ABS @Sovol Zero",
"sub_path": "filament/Generic ABS @Sovol Zero.json"
},
{
"name": "Generic PC @Sovol SV08 MAX",
"sub_path": "filament/Generic PC @Sovol SV08 MAX.json"
},
{
"name": "Generic PC @Sovol Zero",
"sub_path": "filament/Generic PC @Sovol Zero.json"
},
{
"name": "Generic PETG @Sovol SV06 ACE",
"sub_path": "filament/Generic PETG @Sovol SV06 ACE.json"
},
{
"name": "Generic PETG @Sovol SV06 Plus ACE",
"sub_path": "filament/Generic PETG @Sovol SV06 Plus ACE.json"
},
{
"name": "Generic PETG @Sovol SV08",
"sub_path": "filament/Generic PETG @Sovol SV08.json"
},
{
"name": "Generic PETG @Sovol SV08 MAX",
"sub_path": "filament/Generic PETG @Sovol SV08 MAX.json"
},
{
"name": "Generic PETG @Sovol Zero",
"sub_path": "filament/Generic PETG @Sovol Zero.json"
},
{
"name": "Generic PLA @Sovol SV06 ACE",
"sub_path": "filament/Generic PLA @Sovol SV06 ACE.json"
},
{
"name": "Generic PLA @Sovol SV06 Plus ACE",
"sub_path": "filament/Generic PLA @Sovol SV06 Plus ACE.json"
},
{
"name": "Generic TPU @Sovol SV06 Plus ACE",
"sub_path": "filament/Generic TPU @Sovol SV06 Plus ACE.json"
},
{
"name": "Generic PLA @Sovol SV07",
"sub_path": "filament/Generic PLA @Sovol SV07.json"
},
{
"name": "Generic ABS @Sovol SV08",
"sub_path": "filament/Generic ABS @Sovol SV08.json"
},
{
"name": "Generic PETG @Sovol SV08",
"sub_path": "filament/Generic PETG @Sovol SV08.json"
},
{
"name": "Generic PLA @Sovol SV08",
"sub_path": "filament/Generic PLA @Sovol SV08.json"
@@ -286,44 +270,60 @@
"sub_path": "filament/Generic PLA @Sovol SV08 0.2 nozzle.json"
},
{
"name": "Generic TPU @Sovol SV08",
"sub_path": "filament/Generic TPU @Sovol SV08.json"
},
{
"name": "Generic ABS @Sovol Zero",
"sub_path": "filament/Generic ABS @Sovol Zero.json"
},
{
"name": "Generic PC @Sovol Zero",
"sub_path": "filament/Generic PC @Sovol Zero.json"
},
{
"name": "Generic PETG @Sovol Zero",
"sub_path": "filament/Generic PETG @Sovol Zero.json"
},
{
"name": "Sovol Zero PETG HS Nozzle",
"sub_path": "filament/Sovol Zero PETG HS Nozzle.json"
"name": "Generic PLA @Sovol SV08 MAX",
"sub_path": "filament/Generic PLA @Sovol SV08 MAX.json"
},
{
"name": "Generic PLA @Sovol Zero",
"sub_path": "filament/Generic PLA @Sovol Zero.json"
},
{
"name": "Sovol Zero PLA Basic HS Nozzle",
"sub_path": "filament/Sovol Zero PLA Basic HS Nozzle.json"
"name": "Generic PLA Silk @Sovol SV08 MAX",
"sub_path": "filament/Generic PLA Silk @Sovol SV08 MAX.json"
},
{
"name": "Generic PLA Silk @Sovol Zero",
"sub_path": "filament/Generic PLA Silk @Sovol Zero.json"
},
{
"name": "Sovol Zero PLA Silk HS Nozzle",
"sub_path": "filament/Sovol Zero PLA Silk HS Nozzle.json"
"name": "Generic TPU @Sovol SV06 ACE",
"sub_path": "filament/Generic TPU @Sovol SV06 ACE.json"
},
{
"name": "Generic TPU @Sovol SV06 Plus ACE",
"sub_path": "filament/Generic TPU @Sovol SV06 Plus ACE.json"
},
{
"name": "Generic TPU @Sovol SV08",
"sub_path": "filament/Generic TPU @Sovol SV08.json"
},
{
"name": "Generic TPU @Sovol SV08 MAX",
"sub_path": "filament/Generic TPU @Sovol SV08 MAX.json"
},
{
"name": "Generic TPU @Sovol Zero",
"sub_path": "filament/Generic TPU @Sovol Zero.json"
},
{
"name": "Polymaker PETG @Sovol SV08 MAX",
"sub_path": "filament/Polymaker PETG @Sovol SV08 MAX.json"
},
{
"name": "SUNLU PETG @Sovol SV08 MAX",
"sub_path": "filament/SUNLU PETG @Sovol SV08 MAX.json"
},
{
"name": "Sovol Zero PETG HS Nozzle",
"sub_path": "filament/Sovol Zero PETG HS Nozzle.json"
},
{
"name": "Sovol Zero PLA Basic HS Nozzle",
"sub_path": "filament/Sovol Zero PLA Basic HS Nozzle.json"
},
{
"name": "Sovol Zero PLA Silk HS Nozzle",
"sub_path": "filament/Sovol Zero PLA Silk HS Nozzle.json"
}
],
"machine_list": [
+36 -36
View File
@@ -360,14 +360,6 @@
"name": "fdm_filament_tpu",
"sub_path": "filament/fdm_filament_tpu.json"
},
{
"name": "Tiertime ABS",
"sub_path": "filament/Tiertime ABS.json"
},
{
"name": "Tiertime ABS@300HS",
"sub_path": "filament/Tiertime ABS@300HS.json"
},
{
"name": "Generic ABS @Tiertime",
"sub_path": "filament/Generic ABS @Tiertime.json"
@@ -377,12 +369,12 @@
"sub_path": "filament/Generic ABS @Tiertime 300HS.json"
},
{
"name": "Tiertime ASA",
"sub_path": "filament/Tiertime ASA.json"
"name": "Tiertime ABS",
"sub_path": "filament/Tiertime ABS.json"
},
{
"name": "Tiertime ASA@300HS",
"sub_path": "filament/Tiertime ASA@300HS.json"
"name": "Tiertime ABS@300HS",
"sub_path": "filament/Tiertime ABS@300HS.json"
},
{
"name": "Generic ASA @Tiertime",
@@ -392,6 +384,14 @@
"name": "Generic ASA @Tiertime 300HS",
"sub_path": "filament/Generic ASA @Tiertime 300HS.json"
},
{
"name": "Tiertime ASA",
"sub_path": "filament/Tiertime ASA.json"
},
{
"name": "Tiertime ASA@300HS",
"sub_path": "filament/Tiertime ASA@300HS.json"
},
{
"name": "Generic BVOH @Tiertime",
"sub_path": "filament/Generic BVOH @Tiertime.json"
@@ -420,6 +420,10 @@
"name": "Generic PA @Tiertime",
"sub_path": "filament/Generic PA @Tiertime.json"
},
{
"name": "Generic PA @Tiertime 300HS",
"sub_path": "filament/Generic PA @Tiertime 300HS.json"
},
{
"name": "Generic PA-CF @Tiertime",
"sub_path": "filament/Generic PA-CF @Tiertime.json"
@@ -428,10 +432,6 @@
"name": "Generic PA-CF @Tiertime 300HS",
"sub_path": "filament/Generic PA-CF @Tiertime 300HS.json"
},
{
"name": "Generic PA @Tiertime 300HS",
"sub_path": "filament/Generic PA @Tiertime 300HS.json"
},
{
"name": "Tiertime PA6-CF",
"sub_path": "filament/Tiertime PA6-CF.json"
@@ -468,6 +468,10 @@
"name": "Generic PE @Tiertime",
"sub_path": "filament/Generic PE @Tiertime.json"
},
{
"name": "Generic PE @Tiertime 300HS",
"sub_path": "filament/Generic PE @Tiertime 300HS.json"
},
{
"name": "Generic PE-CF @Tiertime",
"sub_path": "filament/Generic PE-CF @Tiertime.json"
@@ -476,14 +480,14 @@
"name": "Generic PE-CF @Tiertime 300HS",
"sub_path": "filament/Generic PE-CF @Tiertime 300HS.json"
},
{
"name": "Generic PE @Tiertime 300HS",
"sub_path": "filament/Generic PE @Tiertime 300HS.json"
},
{
"name": "Generic PETG @Tiertime",
"sub_path": "filament/Generic PETG @Tiertime.json"
},
{
"name": "Generic PETG @Tiertime 300HS",
"sub_path": "filament/Generic PETG @Tiertime 300HS.json"
},
{
"name": "Generic PETG-CF @Tiertime",
"sub_path": "filament/Generic PETG-CF @Tiertime.json"
@@ -492,10 +496,6 @@
"name": "Generic PETG-CF @Tiertime 300HS",
"sub_path": "filament/Generic PETG-CF @Tiertime 300HS.json"
},
{
"name": "Generic PETG @Tiertime 300HS",
"sub_path": "filament/Generic PETG @Tiertime 300HS.json"
},
{
"name": "Tiertime PET-CF",
"sub_path": "filament/Tiertime PET-CF.json"
@@ -524,6 +524,10 @@
"name": "Generic PLA @Tiertime",
"sub_path": "filament/Generic PLA @Tiertime.json"
},
{
"name": "Generic PLA @Tiertime 300HS",
"sub_path": "filament/Generic PLA @Tiertime 300HS.json"
},
{
"name": "Generic PLA High Speed @Tiertime",
"sub_path": "filament/Generic PLA High Speed @Tiertime.json"
@@ -548,10 +552,6 @@
"name": "Generic PLA-CF @Tiertime 300HS",
"sub_path": "filament/Generic PLA-CF @Tiertime 300HS.json"
},
{
"name": "Generic PLA @Tiertime 300HS",
"sub_path": "filament/Generic PLA @Tiertime 300HS.json"
},
{
"name": "Tiertime PLA",
"sub_path": "filament/Tiertime PLA.json"
@@ -572,6 +572,10 @@
"name": "Generic PP @Tiertime",
"sub_path": "filament/Generic PP @Tiertime.json"
},
{
"name": "Generic PP @Tiertime 300HS",
"sub_path": "filament/Generic PP @Tiertime 300HS.json"
},
{
"name": "Generic PP-CF @Tiertime",
"sub_path": "filament/Generic PP-CF @Tiertime.json"
@@ -588,10 +592,6 @@
"name": "Generic PP-GF @Tiertime 300HS",
"sub_path": "filament/Generic PP-GF @Tiertime 300HS.json"
},
{
"name": "Generic PP @Tiertime 300HS",
"sub_path": "filament/Generic PP @Tiertime 300HS.json"
},
{
"name": "Generic PPA-CF @Tiertime",
"sub_path": "filament/Generic PPA-CF @Tiertime.json"
@@ -612,6 +612,10 @@
"name": "Generic PPS @Tiertime",
"sub_path": "filament/Generic PPS @Tiertime.json"
},
{
"name": "Generic PPS @Tiertime 300HS",
"sub_path": "filament/Generic PPS @Tiertime 300HS.json"
},
{
"name": "Generic PPS-CF @Tiertime",
"sub_path": "filament/Generic PPS-CF @Tiertime.json"
@@ -620,10 +624,6 @@
"name": "Generic PPS-CF @Tiertime 300HS",
"sub_path": "filament/Generic PPS-CF @Tiertime 300HS.json"
},
{
"name": "Generic PPS @Tiertime 300HS",
"sub_path": "filament/Generic PPS @Tiertime 300HS.json"
},
{
"name": "Generic PVA @Tiertime",
"sub_path": "filament/Generic PVA @Tiertime.json"
+4 -4
View File
@@ -80,13 +80,13 @@
}
],
"filament_list": [
{
"name": "Generic TPU 95A @TwoTrees SK1",
"sub_path": "filament/Generic TPU 95A @TwoTrees SK1.json"
},
{
"name": "Generic HS PLA @TwoTrees SK1",
"sub_path": "filament/Generic HS PLA @TwoTrees SK1.json"
},
{
"name": "Generic TPU 95A @TwoTrees SK1",
"sub_path": "filament/Generic TPU 95A @TwoTrees SK1.json"
}
],
"machine_list": [
+1 -5
View File
@@ -4,9 +4,5 @@
],
"process": [
"GP008"
],
"machine_model_list": [],
"process_list": [],
"filament_list": [],
"machine_list": []
]
}
+12 -12
View File
@@ -56,6 +56,14 @@
"name": "fdm_process_tiq_common",
"sub_path": "process/fdm_process_tiq_common.json"
},
{
"name": "0.15mm Standard @iQ TiQ2 (0.25 Nozzle)",
"sub_path": "process/0.15mm Standard @iQ TiQ2 (0.25 Nozzle).json"
},
{
"name": "0.15mm Standard @iQ TiQ8 (0.25 Nozzle)",
"sub_path": "process/0.15mm Standard @iQ TiQ8 (0.25 Nozzle).json"
},
{
"name": "0.20mm Standard @iQ TiQ2 P1 - HPP4GF25 Grauts (0.4 Nozzle)",
"sub_path": "process/0.20mm Standard @iQ TiQ2 P1 - HPP4GF25 Grauts (0.4 Nozzle).json"
@@ -76,26 +84,18 @@
"name": "0.20mm Standard @iQ TiQ8 P1 - ABS Natur Material4Print (0.4 Nozzle)",
"sub_path": "process/0.20mm Standard @iQ TiQ8 P1 - ABS Natur Material4Print (0.4 Nozzle).json"
},
{
"name": "0.15mm Standard @iQ TiQ2 (0.25 Nozzle)",
"sub_path": "process/0.15mm Standard @iQ TiQ2 (0.25 Nozzle).json"
},
{
"name": "0.30mm Standard @iQ TiQ2 (0.6 Nozzle)",
"sub_path": "process/0.30mm Standard @iQ TiQ2 (0.6 Nozzle).json"
},
{
"name": "0.40mm Standard @iQ TiQ2 (0.8 Nozzle)",
"sub_path": "process/0.40mm Standard @iQ TiQ2 (0.8 Nozzle).json"
},
{
"name": "0.15mm Standard @iQ TiQ8 (0.25 Nozzle)",
"sub_path": "process/0.15mm Standard @iQ TiQ8 (0.25 Nozzle).json"
},
{
"name": "0.30mm Standard @iQ TiQ8 (0.6 Nozzle)",
"sub_path": "process/0.30mm Standard @iQ TiQ8 (0.6 Nozzle).json"
},
{
"name": "0.40mm Standard @iQ TiQ2 (0.8 Nozzle)",
"sub_path": "process/0.40mm Standard @iQ TiQ2 (0.8 Nozzle).json"
},
{
"name": "0.40mm Standard @iQ TiQ8 (0.8 Nozzle)",
"sub_path": "process/0.40mm Standard @iQ TiQ8 (0.8 Nozzle).json"
+198 -198
View File
@@ -1,199 +1,199 @@
{
"name": "re3D",
"url": "",
"version": "03.00.10",
"force_update": "0",
"description": "re3D configurations",
"machine_model_list": [
{
"name": "re3D Gigabot 4",
"sub_path": "machine/re3D Gigabot 4.json"
},
{
"name": "re3D Gigabot 4 XLT",
"sub_path": "machine/re3D Gigabot 4 XLT.json"
},
{
"name": "re3D GigabotX 2",
"sub_path": "machine/re3D GigabotX 2.json"
},
{
"name": "re3D GigabotX 2 XLT",
"sub_path": "machine/re3D GigabotX 2 XLT.json"
},
{
"name": "re3D Terabot 4",
"sub_path": "machine/re3D Terabot 4.json"
},
{
"name": "re3D TerabotX 2",
"sub_path": "machine/re3D TerabotX 2.json"
}
],
"process_list": [
{
"name": "fdm_process_common",
"sub_path": "process/fdm_process_common.json"
},
{
"name": "fdm_process_re3D_common",
"sub_path": "process/fdm_process_re3D_common.json"
},
{
"name": "fgf_process_re3D_common",
"sub_path": "process/fgf_process_re3D_common.json"
},
{
"name": "0.2 Fine",
"sub_path": "process/0.2mm Fine @re3D fdm 0.4.json"
},
{
"name": "0.26 Standard",
"sub_path": "process/0.26mm Standard @re3D fdm 0.4.json"
},
{
"name": "0.32 Draft",
"sub_path": "process/0.32mm Draft @re3D fdm 0.4.json"
},
{
"name": "0.3 Fine",
"sub_path": "process/0.3mm Fine @re3D fdm 0.8.json"
},
{
"name": "0.4 Standard",
"sub_path": "process/0.4mm Draft @re3D fdm 0.8.json"
},
{
"name": "1.0 Standard",
"sub_path": "process/1.0mm Standard @re3D fgf 1.75.json"
},
{
"name": "0.6 Standard",
"sub_path": "process/0.6mm Standard @re3D fgf 0.8.json"
}
],
"filament_list": [
{
"name": "fdm_filament_common",
"sub_path": "filament/fdm_filament_common.json"
},
{
"name": "fdm_filament_pla",
"sub_path": "filament/fdm_filament_pla.json"
},
{
"name": "fdm_filament_pet",
"sub_path": "filament/fdm_filament_pet.json"
},
{
"name": "fdm_filament_pp",
"sub_path": "filament/fdm_filament_pp.json"
},
{
"name": "fdm_filament_pc",
"sub_path": "filament/fdm_filament_pc.json"
},
{
"name": "re3D PLA @0.4 nozzle",
"sub_path": "filament/re3D PLA @0.4 nozzle.json"
},
{
"name": "re3D PLA @0.8 nozzle",
"sub_path": "filament/re3D PLA @0.8 nozzle.json"
},
{
"name": "re3D PETG @0.4 nozzle",
"sub_path": "filament/re3D PETG @0.4 nozzle.json"
},
{
"name": "re3D PETG @0.8 nozzle",
"sub_path": "filament/re3D PETG @0.8 nozzle.json"
},
{
"name": "re3D PC @0.4 nozzle",
"sub_path": "filament/re3D PC @0.4 nozzle.json"
},
{
"name": "re3D PC @0.8 nozzle",
"sub_path": "filament/re3D PC @0.8 nozzle.json"
},
{
"name": "re3D rPETG @0.8 nozzle",
"sub_path": "filament/re3D rPETG @0.8 nozzle.json"
},
{
"name": "re3D rPETG @1.75 nozzle",
"sub_path": "filament/re3D rPETG @1.75 nozzle.json"
},
{
"name": "re3D rPP @0.8 nozzle",
"sub_path": "filament/re3D rPP @0.8 nozzle.json"
},
{
"name": "re3D rPP @1.75 nozzle",
"sub_path": "filament/re3D rPP @1.75 nozzle.json"
}
],
"machine_list": [
{
"name": "fdm_machine_common",
"sub_path": "machine/fdm_machine_common.json"
},
{
"name": "fdm_re3D_common",
"sub_path": "machine/fdm_re3D_common.json"
},
{
"name": "fgf_re3D_common",
"sub_path": "machine/fgf_re3D_common.json"
},
{
"name": "re3D Gigabot 4 0.4 nozzle",
"sub_path": "machine/re3D Gigabot 4 0.4 nozzle.json"
},
{
"name": "re3D Gigabot 4 0.8 nozzle",
"sub_path": "machine/re3D Gigabot 4 0.8 nozzle.json"
},
{
"name": "re3D Gigabot 4 XLT 0.4 nozzle",
"sub_path": "machine/re3D Gigabot 4 XLT 0.4 nozzle.json"
},
{
"name": "re3D Gigabot 4 XLT 0.8 nozzle",
"sub_path": "machine/re3D Gigabot 4 XLT 0.8 nozzle.json"
},
{
"name": "re3D GigabotX 2 0.8 nozzle",
"sub_path": "machine/re3D GigabotX 2 0.8 nozzle.json"
},
{
"name": "re3D GigabotX 2 1.75 nozzle",
"sub_path": "machine/re3D GigabotX 2 1.75 nozzle.json"
},
{
"name": "re3D GigabotX 2 XLT 0.8 nozzle",
"sub_path": "machine/re3D GigabotX 2 XLT 0.8 nozzle.json"
},
{
"name": "re3D GigabotX 2 XLT 1.75 nozzle",
"sub_path": "machine/re3D GigabotX 2 XLT 1.75 nozzle.json"
},
{
"name": "re3D Terabot 4 0.4 nozzle",
"sub_path": "machine/re3D Terabot 4 0.4 nozzle.json"
},
{
"name": "re3D Terabot 4 0.8 nozzle",
"sub_path": "machine/re3D Terabot 4 0.8 nozzle.json"
},
{
"name": "re3D TerabotX 2 0.8 nozzle",
"sub_path": "machine/re3D TerabotX 2 0.8 nozzle.json"
},
{
"name": "re3D TerabotX 2 1.75 nozzle",
"sub_path": "machine/re3D TerabotX 2 1.75 nozzle.json"
}
]
}
"name": "re3D",
"url": "",
"version": "03.00.10",
"force_update": "0",
"description": "re3D configurations",
"machine_model_list": [
{
"name": "re3D Gigabot 4",
"sub_path": "machine/re3D Gigabot 4.json"
},
{
"name": "re3D Gigabot 4 XLT",
"sub_path": "machine/re3D Gigabot 4 XLT.json"
},
{
"name": "re3D GigabotX 2",
"sub_path": "machine/re3D GigabotX 2.json"
},
{
"name": "re3D GigabotX 2 XLT",
"sub_path": "machine/re3D GigabotX 2 XLT.json"
},
{
"name": "re3D Terabot 4",
"sub_path": "machine/re3D Terabot 4.json"
},
{
"name": "re3D TerabotX 2",
"sub_path": "machine/re3D TerabotX 2.json"
}
],
"process_list": [
{
"name": "fdm_process_common",
"sub_path": "process/fdm_process_common.json"
},
{
"name": "fdm_process_re3D_common",
"sub_path": "process/fdm_process_re3D_common.json"
},
{
"name": "fgf_process_re3D_common",
"sub_path": "process/fgf_process_re3D_common.json"
},
{
"name": "0.2 Fine",
"sub_path": "process/0.2mm Fine @re3D fdm 0.4.json"
},
{
"name": "0.26 Standard",
"sub_path": "process/0.26mm Standard @re3D fdm 0.4.json"
},
{
"name": "0.3 Fine",
"sub_path": "process/0.3mm Fine @re3D fdm 0.8.json"
},
{
"name": "0.32 Draft",
"sub_path": "process/0.32mm Draft @re3D fdm 0.4.json"
},
{
"name": "0.4 Standard",
"sub_path": "process/0.4mm Draft @re3D fdm 0.8.json"
},
{
"name": "0.6 Standard",
"sub_path": "process/0.6mm Standard @re3D fgf 0.8.json"
},
{
"name": "1.0 Standard",
"sub_path": "process/1.0mm Standard @re3D fgf 1.75.json"
}
],
"filament_list": [
{
"name": "fdm_filament_common",
"sub_path": "filament/fdm_filament_common.json"
},
{
"name": "fdm_filament_pc",
"sub_path": "filament/fdm_filament_pc.json"
},
{
"name": "fdm_filament_pet",
"sub_path": "filament/fdm_filament_pet.json"
},
{
"name": "fdm_filament_pla",
"sub_path": "filament/fdm_filament_pla.json"
},
{
"name": "fdm_filament_pp",
"sub_path": "filament/fdm_filament_pp.json"
},
{
"name": "re3D PC @0.4 nozzle",
"sub_path": "filament/re3D PC @0.4 nozzle.json"
},
{
"name": "re3D PC @0.8 nozzle",
"sub_path": "filament/re3D PC @0.8 nozzle.json"
},
{
"name": "re3D PETG @0.4 nozzle",
"sub_path": "filament/re3D PETG @0.4 nozzle.json"
},
{
"name": "re3D PETG @0.8 nozzle",
"sub_path": "filament/re3D PETG @0.8 nozzle.json"
},
{
"name": "re3D rPETG @0.8 nozzle",
"sub_path": "filament/re3D rPETG @0.8 nozzle.json"
},
{
"name": "re3D rPETG @1.75 nozzle",
"sub_path": "filament/re3D rPETG @1.75 nozzle.json"
},
{
"name": "re3D PLA @0.4 nozzle",
"sub_path": "filament/re3D PLA @0.4 nozzle.json"
},
{
"name": "re3D PLA @0.8 nozzle",
"sub_path": "filament/re3D PLA @0.8 nozzle.json"
},
{
"name": "re3D rPP @0.8 nozzle",
"sub_path": "filament/re3D rPP @0.8 nozzle.json"
},
{
"name": "re3D rPP @1.75 nozzle",
"sub_path": "filament/re3D rPP @1.75 nozzle.json"
}
],
"machine_list": [
{
"name": "fdm_machine_common",
"sub_path": "machine/fdm_machine_common.json"
},
{
"name": "fdm_re3D_common",
"sub_path": "machine/fdm_re3D_common.json"
},
{
"name": "fgf_re3D_common",
"sub_path": "machine/fgf_re3D_common.json"
},
{
"name": "re3D Gigabot 4 0.4 nozzle",
"sub_path": "machine/re3D Gigabot 4 0.4 nozzle.json"
},
{
"name": "re3D Gigabot 4 0.8 nozzle",
"sub_path": "machine/re3D Gigabot 4 0.8 nozzle.json"
},
{
"name": "re3D Gigabot 4 XLT 0.4 nozzle",
"sub_path": "machine/re3D Gigabot 4 XLT 0.4 nozzle.json"
},
{
"name": "re3D Gigabot 4 XLT 0.8 nozzle",
"sub_path": "machine/re3D Gigabot 4 XLT 0.8 nozzle.json"
},
{
"name": "re3D Terabot 4 0.4 nozzle",
"sub_path": "machine/re3D Terabot 4 0.4 nozzle.json"
},
{
"name": "re3D Terabot 4 0.8 nozzle",
"sub_path": "machine/re3D Terabot 4 0.8 nozzle.json"
},
{
"name": "re3D GigabotX 2 0.8 nozzle",
"sub_path": "machine/re3D GigabotX 2 0.8 nozzle.json"
},
{
"name": "re3D GigabotX 2 1.75 nozzle",
"sub_path": "machine/re3D GigabotX 2 1.75 nozzle.json"
},
{
"name": "re3D GigabotX 2 XLT 0.8 nozzle",
"sub_path": "machine/re3D GigabotX 2 XLT 0.8 nozzle.json"
},
{
"name": "re3D GigabotX 2 XLT 1.75 nozzle",
"sub_path": "machine/re3D GigabotX 2 XLT 1.75 nozzle.json"
},
{
"name": "re3D TerabotX 2 0.8 nozzle",
"sub_path": "machine/re3D TerabotX 2 0.8 nozzle.json"
},
{
"name": "re3D TerabotX 2 1.75 nozzle",
"sub_path": "machine/re3D TerabotX 2 1.75 nozzle.json"
}
]
}