Compare commits

...

22 Commits

Author SHA1 Message Date
Ian Chua
274150af27 Merge branch 'main' into feat/plugin-storage-api 2026-08-05 20:11:29 +08:00
SoftFever
a10d9e77cf Make the wipe tower's planner flush and dwell work on Klipper (#15133)
# Description

On Klipper the wipe tower's motion-queue synchronization silently did
nothing. Klipper acts on commands the moment it parses them, and its
`G4` reads only `P` in milliseconds — it ignores `S` — so the `G4 S0`
the tower used to flush the queue before a temperature change never
synchronized anything, and the cooling delay after a filament's cooling
moves passed instantly instead of waiting. The tower now emits `M400`
for the flush and `G4 P<ms>` for the dwell when the flavor is Klipper.

Only `gcode_flavor = klipper` is affected; G-code for every other flavor
is byte-identical, so no shipped profile or existing project file
changes.

# Screenshots/Recordings/Graphs

<!--
> Please attach relevant screenshots to showcase the UI changes.
> Please attach images that can help explain the changes.
-->

## Tests

<!--
> Please describe the tests that you have conducted to verify the
changes made in this PR.
-->

<!--
> A guide for users on how to download the artifacts from this PR.
-->

[How to Download Pull Requests Artifacts for
Testing](https://www.orcaslicer.com/wiki/how_to_download_pr_artifacts)
2026-08-05 18:21:05 +08:00
SoftFever
1d023216f2 clean up 2026-08-05 18:09:36 +08:00
SoftFever
dc2796209f feat: printer agent UI (#15111)
# Description

Changes the device tab to render native wxWidgets UI and route the UI
via printer agents.

When the flag introduced in #15110 is enabled, the tab bar will show
both the native wxWidgets device tab and webview tab under the name
device (legacy)

This is a prerequisite for implementing the printer agent workflow.

<img width="3377" height="1378" alt="image"
src="https://github.com/user-attachments/assets/d72b646b-e6c6-4e10-b5d4-fc989debfca8"
/>
<img width="3377" height="1378" alt="image"
src="https://github.com/user-attachments/assets/2356c0f8-bffe-4cd5-bf4d-31f4b5c7706e"
/>

<!--
> A guide for users on how to download the artifacts from this PR.
-->

[How to Download Pull Requests Artifacts for
Testing](https://www.orcaslicer.com/wiki/how_to_download_pr_artifacts)
2026-08-05 17:25:23 +08:00
SoftFever
194ef34080 Wait in the wipe tower with a millisecond dwell on Klipper
The wipe tower's "Delay after unloading" never happened on Klipper. It was
emitted as G4 S<seconds>, and Klipper's G4 reads only the P parameter, in
milliseconds, so the pause was silently skipped. The option now produces a
dwell Klipper actually performs.

Also corrects the planner flush rationale, which cited an extruder position
reset that Klipper resolves at parse time and does not need synchronized, and
adds end-to-end coverage that slices a two-filament print and checks the
emitted wipe tower G-code on both a Klipper and a non-Klipper flavor.

No change to any other firmware flavor's output, and no shipped profile sets a
non-zero delay, so no shipped profile's output moves either.
2026-08-05 17:15:35 +08:00
SoftFever
4e1caa39eb Flush the wipe tower planner queue with M400 on Klipper
The wipe tower emitted G4 S0 to make the firmware finish its queued moves
before commands that must not take effect early. Klipper's G4 reads only the
P parameter, so that flush never happened there and a temperature change could
land seconds ahead of the moves it was meant to follow. Klipper now gets M400
instead, through one helper shared by both wipe tower implementations.

No change to any other firmware flavor's output, so no shipped profile or saved
project is affected.
2026-08-05 17:15:35 +08:00
Ian Chua
38f5c84e7f fix: regression error 2026-08-05 16:20:58 +08:00
Ian Chua
4d8ce0e8a7 Merge branch 'main' into feat/printer-agent-ui 2026-08-05 13:40:20 +08:00
Ian Chua
38cb1ae8d1 Add developer flag for printer agents (#15110) 2026-08-05 13:40:05 +08:00
Ian Chua
32f82b64e7 fix: enable both device tabs 2026-08-05 13:07:32 +08:00
Ian Chua
e56d7aeb80 Merge branch 'feat/printer-agent-ui' of https://github.com/OrcaSlicer/OrcaSlicer into feat/printer-agent-ui 2026-08-05 13:07:08 +08:00
Ian Chua
4758dc6c68 Merge branch 'main' into feat/printer-agent-ui 2026-08-05 13:06:47 +08:00
Ian Chua
596cbb8b2d Keep printer-agent error codes available to UI workflow 2026-08-05 11:39:37 +08:00
SoftFever
6312caaf13 Add filament_retract_length_toolchange/filament_retract_restart_extra_toolchange config and update tool changer printer's profiles (#15039)
* update snapmaker profiles. largely ported for Snapmaker Orca fork

* update prime volume

* set precise_outer_wall to 1

* Update per-material multi-tool ramming to the filament library

* Add per-filament overrides for toolchange retraction

* Set toolchange retraction per filament for Snapmaker U1

* set default support type to tree

* format snapmaker profiles
2026-08-05 00:13:27 +08:00
Ian Chua
79dcace1ac Add unsupported-command feedback to the device UI 2026-08-04 21:26:50 +08:00
Andrew
8dfc7a14b9 Gate agent mode behind use_printer_agents toggle
Replace per-printer auto-activation
(is_current_printer_agent_plugin)
with a global experimental AppConfig
toggle, default off: legacy
print-host behavior is unchanged
until the user opts in. The toggle
drives device-tab routing, print
button defaults, connect-button
visibility and sidebar layout, and
dedups machine-select dialog opens.
2026-08-04 18:12:11 +08:00
Andrew
1534268183 Reset device selection on agent swap or unload (#124)
set_live_printer_agent centralizes
the swap: deselect the machine,
clear stale sidebar state and the
previous agent's Other Devices, then
install the new agent (or null when
its provider vanished). Plugin
load/unload callbacks refresh the
dropdown and re-run agent selection.
load_last_machine no longer falls
back to the first available machine.
2026-08-04 18:12:11 +08:00
Andrew
501af81ba9 Replace fake-enum printer agent dropdown (#121)
A dedicated PrinterAgentChoice field
reads rows straight from the live
agent registry and stores the agent
id string, replacing the fake-coEnum
index mapping. The field moves to
TabPrinter and registers with the
searcher so UnsavedChanges renders
it; the PhysicalPrinterDialog copy
and its update hook are removed
(#125). switch_printer_agent now
resolves ids via
resolve_printer_agent_id.
2026-08-04 18:12:10 +08:00
Ian Chua
16c44940d2 Add developer flag for printer agents 2026-08-04 18:12:10 +08:00
Ian Chua
2e246341d1 move the storage directory outside the actual plugin code folder 2026-07-24 18:57:46 +08:00
Ian Chua
9513300835 Merge branch 'main' into feat/plugin-storage-api 2026-07-24 13:09:39 +08:00
Ian Chua
f7caf0db07 feat(plugin): storage API 2026-07-23 21:04:08 +08:00
251 changed files with 11144 additions and 1548 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "Custom Printer", "name": "Custom Printer",
"version": "02.04.00.01", "version": "02.04.00.02",
"force_update": "0", "force_update": "0",
"description": "My configurations", "description": "My configurations",
"machine_model_list": [ "machine_model_list": [

View File

@@ -24,12 +24,6 @@
"filament_loading_speed_start": [ "filament_loading_speed_start": [
"50" "50"
], ],
"filament_multitool_ramming": [
"1"
],
"filament_multitool_ramming_flow": [
"40"
],
"filament_stamping_distance": [ "filament_stamping_distance": [
"45" "45"
], ],

View File

@@ -24,12 +24,6 @@
"filament_loading_speed_start": [ "filament_loading_speed_start": [
"50" "50"
], ],
"filament_multitool_ramming": [
"1"
],
"filament_multitool_ramming_flow": [
"40"
],
"filament_stamping_distance": [ "filament_stamping_distance": [
"45" "45"
], ],

View File

@@ -24,12 +24,6 @@
"filament_loading_speed_start": [ "filament_loading_speed_start": [
"50" "50"
], ],
"filament_multitool_ramming": [
"1"
],
"filament_multitool_ramming_flow": [
"40"
],
"filament_stamping_distance": [ "filament_stamping_distance": [
"45" "45"
], ],

View File

@@ -24,12 +24,6 @@
"filament_loading_speed_start": [ "filament_loading_speed_start": [
"50" "50"
], ],
"filament_multitool_ramming": [
"1"
],
"filament_multitool_ramming_flow": [
"40"
],
"filament_stamping_distance": [ "filament_stamping_distance": [
"45" "45"
], ],

View File

@@ -25,12 +25,6 @@
"filament_loading_speed_start": [ "filament_loading_speed_start": [
"50" "50"
], ],
"filament_multitool_ramming": [
"1"
],
"filament_multitool_ramming_flow": [
"40"
],
"filament_stamping_distance": [ "filament_stamping_distance": [
"45" "45"
], ],

View File

@@ -25,12 +25,6 @@
"filament_loading_speed_start": [ "filament_loading_speed_start": [
"50" "50"
], ],
"filament_multitool_ramming": [
"1"
],
"filament_multitool_ramming_flow": [
"40"
],
"filament_stamping_distance": [ "filament_stamping_distance": [
"45" "45"
], ],

View File

@@ -25,12 +25,6 @@
"filament_loading_speed_start": [ "filament_loading_speed_start": [
"50" "50"
], ],
"filament_multitool_ramming": [
"1"
],
"filament_multitool_ramming_flow": [
"40"
],
"filament_stamping_distance": [ "filament_stamping_distance": [
"45" "45"
], ],

View File

@@ -25,12 +25,6 @@
"filament_loading_speed_start": [ "filament_loading_speed_start": [
"50" "50"
], ],
"filament_multitool_ramming": [
"1"
],
"filament_multitool_ramming_flow": [
"40"
],
"filament_stamping_distance": [ "filament_stamping_distance": [
"45" "45"
], ],

View File

@@ -25,12 +25,6 @@
"filament_loading_speed_start": [ "filament_loading_speed_start": [
"50" "50"
], ],
"filament_multitool_ramming": [
"1"
],
"filament_multitool_ramming_flow": [
"40"
],
"filament_stamping_distance": [ "filament_stamping_distance": [
"45" "45"
], ],

View File

@@ -116,7 +116,7 @@
"deretraction_speed": [ "deretraction_speed": [
"30" "30"
], ],
"z_hop_types": "Normal Lift", "z_hop_types": "Slope Lift",
"silent_mode": "0", "silent_mode": "0",
"single_extruder_multi_material": "1", "single_extruder_multi_material": "1",
"change_filament_gcode": "", "change_filament_gcode": "",

View File

@@ -118,7 +118,7 @@
"deretraction_speed": [ "deretraction_speed": [
"30" "30"
], ],
"z_hop_types": "Normal Lift", "z_hop_types": "Slope Lift",
"silent_mode": "0", "silent_mode": "0",
"single_extruder_multi_material": "1", "single_extruder_multi_material": "1",
"change_filament_gcode": "", "change_filament_gcode": "",

View File

@@ -116,7 +116,7 @@
"deretraction_speed": [ "deretraction_speed": [
"30" "30"
], ],
"z_hop_types": "Normal Lift", "z_hop_types": "Slope Lift",
"silent_mode": "0", "silent_mode": "0",
"single_extruder_multi_material": "1", "single_extruder_multi_material": "1",
"change_filament_gcode": "", "change_filament_gcode": "",

View File

@@ -172,11 +172,11 @@
"0.4" "0.4"
], ],
"z_hop_types": [ "z_hop_types": [
"Normal Lift", "Slope Lift",
"Normal Lift", "Slope Lift",
"Normal Lift", "Slope Lift",
"Normal Lift", "Slope Lift",
"Normal Lift" "Slope Lift"
], ],
"purge_in_prime_tower": "0", "purge_in_prime_tower": "0",
"machine_pause_gcode": "M601", "machine_pause_gcode": "M601",

View File

@@ -1,6 +1,6 @@
{ {
"name": "OrcaFilamentLibrary", "name": "OrcaFilamentLibrary",
"version": "02.04.00.03", "version": "02.04.00.04",
"force_update": "0", "force_update": "0",
"description": "Orca Filament Library", "description": "Orca Filament Library",
"filament_list": [ "filament_list": [

View File

@@ -36,6 +36,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"8" "8"
], ],
"filament_multitool_ramming_flow": [
"8"
],
"filament_type": [ "filament_type": [
"PET-CF" "PET-CF"
], ],

View File

@@ -39,6 +39,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"8" "8"
], ],
"filament_multitool_ramming_flow": [
"8"
],
"filament_vendor": [ "filament_vendor": [
"Bambu Lab" "Bambu Lab"
], ],

View File

@@ -39,6 +39,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"6" "6"
], ],
"filament_multitool_ramming_flow": [
"6"
],
"filament_vendor": [ "filament_vendor": [
"Bambu Lab" "Bambu Lab"
], ],

View File

@@ -21,6 +21,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"6" "6"
], ],
"filament_multitool_ramming_flow": [
"6"
],
"filament_type": [ "filament_type": [
"PLA-AERO" "PLA-AERO"
], ],

View File

@@ -27,6 +27,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"6" "6"
], ],
"filament_multitool_ramming_flow": [
"6"
],
"filament_scarf_seam_type": [ "filament_scarf_seam_type": [
"none" "none"
], ],

View File

@@ -21,6 +21,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"6" "6"
], ],
"filament_multitool_ramming_flow": [
"6"
],
"filament_vendor": [ "filament_vendor": [
"Bambu Lab" "Bambu Lab"
], ],

View File

@@ -36,6 +36,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"1" "1"
], ],
"filament_multitool_ramming_flow": [
"1"
],
"filament_retraction_minimum_travel": [ "filament_retraction_minimum_travel": [
"3" "3"
], ],

View File

@@ -72,15 +72,6 @@
"fan_min_speed": [ "fan_min_speed": [
"10" "10"
], ],
"filament_cooling_final_speed": [
"0"
],
"filament_cooling_initial_speed": [
"0"
],
"filament_cooling_moves": [
"0"
],
"filament_cost": [ "filament_cost": [
"599" "599"
], ],
@@ -99,30 +90,12 @@
"filament_is_support": [ "filament_is_support": [
"0" "0"
], ],
"filament_loading_speed": [
"0"
],
"filament_loading_speed_start": [
"0"
],
"filament_long_retractions_when_cut": [ "filament_long_retractions_when_cut": [
"nil" "nil"
], ],
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"15" "15"
], ],
"filament_minimal_purge_on_wipe_tower": [
"0"
],
"filament_multitool_ramming": [
"0"
],
"filament_multitool_ramming_flow": [
"10"
],
"filament_multitool_ramming_volume": [
"10"
],
"filament_notes": [ "filament_notes": [
"" ""
], ],
@@ -165,21 +138,6 @@
"filament_soluble": [ "filament_soluble": [
"0" "0"
], ],
"filament_stamping_distance": [
"0"
],
"filament_stamping_loading_speed": [
"0"
],
"filament_toolchange_delay": [
"0"
],
"filament_unloading_speed": [
"0"
],
"filament_unloading_speed_start": [
"0"
],
"filament_vendor": [ "filament_vendor": [
"Elas" "Elas"
], ],

View File

@@ -42,15 +42,6 @@
"fan_min_speed": [ "fan_min_speed": [
"20" "20"
], ],
"filament_cooling_final_speed": [
"0"
],
"filament_cooling_initial_speed": [
"0"
],
"filament_cooling_moves": [
"0"
],
"filament_cost": [ "filament_cost": [
"445" "445"
], ],
@@ -69,30 +60,12 @@
"filament_is_support": [ "filament_is_support": [
"0" "0"
], ],
"filament_loading_speed": [
"0"
],
"filament_loading_speed_start": [
"0"
],
"filament_long_retractions_when_cut": [ "filament_long_retractions_when_cut": [
"1" "1"
], ],
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"18" "18"
], ],
"filament_minimal_purge_on_wipe_tower": [
"0"
],
"filament_multitool_ramming": [
"0"
],
"filament_multitool_ramming_flow": [
"10"
],
"filament_multitool_ramming_volume": [
"10"
],
"filament_notes": [ "filament_notes": [
"" ""
], ],
@@ -135,21 +108,6 @@
"filament_soluble": [ "filament_soluble": [
"0" "0"
], ],
"filament_stamping_distance": [
"0"
],
"filament_stamping_loading_speed": [
"0"
],
"filament_toolchange_delay": [
"0"
],
"filament_unloading_speed": [
"0"
],
"filament_unloading_speed_start": [
"0"
],
"filament_wipe": [ "filament_wipe": [
"nil" "nil"
], ],

View File

@@ -71,15 +71,6 @@
"fan_min_speed": [ "fan_min_speed": [
"60" "60"
], ],
"filament_cooling_final_speed": [
"0"
],
"filament_cooling_initial_speed": [
"0"
],
"filament_cooling_moves": [
"0"
],
"filament_cost": [ "filament_cost": [
"449.5" "449.5"
], ],
@@ -98,30 +89,12 @@
"filament_is_support": [ "filament_is_support": [
"0" "0"
], ],
"filament_loading_speed": [
"0"
],
"filament_loading_speed_start": [
"0"
],
"filament_long_retractions_when_cut": [ "filament_long_retractions_when_cut": [
"nil" "nil"
], ],
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"25" "25"
], ],
"filament_minimal_purge_on_wipe_tower": [
"0"
],
"filament_multitool_ramming": [
"0"
],
"filament_multitool_ramming_flow": [
"10"
],
"filament_multitool_ramming_volume": [
"10"
],
"filament_notes": [ "filament_notes": [
"" ""
], ],
@@ -164,21 +137,6 @@
"filament_soluble": [ "filament_soluble": [
"0" "0"
], ],
"filament_stamping_distance": [
"0"
],
"filament_stamping_loading_speed": [
"0"
],
"filament_toolchange_delay": [
"0"
],
"filament_unloading_speed": [
"0"
],
"filament_unloading_speed_start": [
"0"
],
"filament_vendor": [ "filament_vendor": [
"Elas" "Elas"
], ],

View File

@@ -71,15 +71,6 @@
"fan_min_speed": [ "fan_min_speed": [
"100" "100"
], ],
"filament_cooling_final_speed": [
"0"
],
"filament_cooling_initial_speed": [
"0"
],
"filament_cooling_moves": [
"0"
],
"filament_cost": [ "filament_cost": [
"500" "500"
], ],
@@ -98,30 +89,12 @@
"filament_is_support": [ "filament_is_support": [
"0" "0"
], ],
"filament_loading_speed": [
"0"
],
"filament_loading_speed_start": [
"0"
],
"filament_long_retractions_when_cut": [ "filament_long_retractions_when_cut": [
"nil" "nil"
], ],
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"18" "18"
], ],
"filament_minimal_purge_on_wipe_tower": [
"0"
],
"filament_multitool_ramming": [
"0"
],
"filament_multitool_ramming_flow": [
"10"
],
"filament_multitool_ramming_volume": [
"10"
],
"filament_notes": [ "filament_notes": [
"" ""
], ],
@@ -164,21 +137,6 @@
"filament_soluble": [ "filament_soluble": [
"0" "0"
], ],
"filament_stamping_distance": [
"0"
],
"filament_stamping_loading_speed": [
"0"
],
"filament_toolchange_delay": [
"0"
],
"filament_unloading_speed": [
"0"
],
"filament_unloading_speed_start": [
"0"
],
"filament_vendor": [ "filament_vendor": [
"Elas" "Elas"
], ],

View File

@@ -24,6 +24,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"6" "6"
], ],
"filament_multitool_ramming_flow": [
"6"
],
"nozzle_temperature": [ "nozzle_temperature": [
"290" "290"
], ],

View File

@@ -35,6 +35,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"8" "8"
], ],
"filament_multitool_ramming_flow": [
"8"
],
"filament_vendor": [ "filament_vendor": [
"Elegoo" "Elegoo"
], ],

View File

@@ -12,6 +12,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"10" "10"
], ],
"filament_multitool_ramming_flow": [
"10"
],
"nozzle_temperature": [ "nozzle_temperature": [
"220" "220"
], ],

View File

@@ -44,5 +44,8 @@
], ],
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"10" "10"
],
"filament_multitool_ramming_flow": [
"10"
] ]
} }

View File

@@ -44,5 +44,8 @@
], ],
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"8" "8"
],
"filament_multitool_ramming_flow": [
"8"
] ]
} }

View File

@@ -10,5 +10,8 @@
"filament_type": [ "filament_type": [
"PA-CF" "PA-CF"
], ],
"filament_multitool_ramming_flow": [
"8"
],
"compatible_printers": [] "compatible_printers": []
} }

View File

@@ -8,5 +8,8 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"20" "20"
], ],
"filament_multitool_ramming_flow": [
"20"
],
"compatible_printers": [] "compatible_printers": []
} }

View File

@@ -17,6 +17,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"11.5" "11.5"
], ],
"filament_multitool_ramming_flow": [
"13"
],
"overhang_fan_speed": [ "overhang_fan_speed": [
"100" "100"
], ],

View File

@@ -12,6 +12,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"18" "18"
], ],
"filament_multitool_ramming_flow": [
"25"
],
"slow_down_layer_time": [ "slow_down_layer_time": [
"4" "4"
], ],

View File

@@ -8,6 +8,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"11" "11"
], ],
"filament_multitool_ramming_flow": [
"11"
],
"filament_retraction_length": [ "filament_retraction_length": [
"0.8" "0.8"
], ],

View File

@@ -15,6 +15,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"6" "6"
], ],
"filament_multitool_ramming_flow": [
"6"
],
"filament_type": [ "filament_type": [
"PP-CF" "PP-CF"
], ],

View File

@@ -15,6 +15,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"6" "6"
], ],
"filament_multitool_ramming_flow": [
"6"
],
"filament_type": [ "filament_type": [
"PP-GF" "PP-GF"
], ],

View File

@@ -17,6 +17,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"8" "8"
], ],
"filament_multitool_ramming_flow": [
"8"
],
"filament_vendor": [ "filament_vendor": [
"Overture" "Overture"
], ],

View File

@@ -23,6 +23,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"7.5" "7.5"
], ],
"filament_multitool_ramming_flow": [
"7.5"
],
"filament_vendor": [ "filament_vendor": [
"Valment" "Valment"
], ],

View File

@@ -43,6 +43,12 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"12" "12"
], ],
"filament_multitool_ramming_flow": [
"15"
],
"filament_multitool_ramming_volume": [
"10"
],
"filament_type": [ "filament_type": [
"ABS" "ABS"
], ],

View File

@@ -43,6 +43,12 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"12" "12"
], ],
"filament_multitool_ramming_flow": [
"12"
],
"filament_multitool_ramming_volume": [
"10"
],
"filament_type": [ "filament_type": [
"ASA" "ASA"
], ],

View File

@@ -41,6 +41,15 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"8" "8"
], ],
"filament_multitool_ramming": [
"0"
],
"filament_multitool_ramming_flow": [
"6"
],
"filament_multitool_ramming_volume": [
"0.1"
],
"filament_type": [ "filament_type": [
"BVOH" "BVOH"
], ],

View File

@@ -66,6 +66,12 @@
"filament_minimal_purge_on_wipe_tower": [ "filament_minimal_purge_on_wipe_tower": [
"15" "15"
], ],
"filament_multitool_ramming": [
"1"
],
"filament_multitool_ramming_volume": [
"5"
],
"filament_retract_before_wipe": [ "filament_retract_before_wipe": [
"nil" "nil"
], ],

View File

@@ -41,6 +41,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"16" "16"
], ],
"filament_multitool_ramming_flow": [
"16"
],
"filament_scarf_seam_type": [ "filament_scarf_seam_type": [
"none" "none"
], ],

View File

@@ -8,6 +8,9 @@
"filament_type": [ "filament_type": [
"EVA" "EVA"
], ],
"filament_multitool_ramming_flow": [
"12"
],
"supertack_plate_temp": [ "supertack_plate_temp": [
"0" "0"
], ],

View File

@@ -41,6 +41,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"8" "8"
], ],
"filament_multitool_ramming_flow": [
"8"
],
"filament_type": [ "filament_type": [
"HIPS" "HIPS"
], ],

View File

@@ -44,6 +44,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"8" "8"
], ],
"filament_multitool_ramming_flow": [
"12"
],
"filament_type": [ "filament_type": [
"PA" "PA"
], ],

View File

@@ -7,6 +7,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"12" "12"
], ],
"filament_multitool_ramming_flow": [
"12"
],
"filament_type": [ "filament_type": [
"PAHT" "PAHT"
], ],

View File

@@ -86,6 +86,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"12" "12"
], ],
"filament_multitool_ramming_flow": [
"16"
],
"filament_flow_ratio": [ "filament_flow_ratio": [
"0.94" "0.94"
] ]

View File

@@ -26,6 +26,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"12" "12"
], ],
"filament_multitool_ramming_flow": [
"10"
],
"filament_type": [ "filament_type": [
"PCTG" "PCTG"
], ],

View File

@@ -38,6 +38,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"12" "12"
], ],
"filament_multitool_ramming_flow": [
"12"
],
"filament_type": [ "filament_type": [
"PE" "PE"
], ],

View File

@@ -26,6 +26,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"10" "10"
], ],
"filament_multitool_ramming_flow": [
"15"
],
"filament_type": [ "filament_type": [
"PETG" "PETG"
], ],

View File

@@ -38,6 +38,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"6" "6"
], ],
"filament_multitool_ramming_flow": [
"6"
],
"filament_type": [ "filament_type": [
"PHA" "PHA"
], ],

View File

@@ -38,6 +38,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"12" "12"
], ],
"filament_multitool_ramming_flow": [
"20"
],
"filament_scarf_seam_type": [ "filament_scarf_seam_type": [
"none" "none"
], ],

View File

@@ -9,6 +9,9 @@
"filament_flow_ratio": [ "filament_flow_ratio": [
"0.98" "0.98"
], ],
"filament_multitool_ramming_flow": [
"10"
],
"slow_down_layer_time": [ "slow_down_layer_time": [
"8" "8"
] ]

View File

@@ -38,6 +38,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"12" "12"
], ],
"filament_multitool_ramming_flow": [
"12"
],
"filament_type": [ "filament_type": [
"PP" "PP"
], ],

View File

@@ -47,6 +47,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"8" "8"
], ],
"filament_multitool_ramming_flow": [
"8"
],
"filament_type": [ "filament_type": [
"PPA-CF" "PPA-CF"
], ],

View File

@@ -43,6 +43,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"4" "4"
], ],
"filament_multitool_ramming_flow": [
"4"
],
"filament_type": [ "filament_type": [
"PPS" "PPS"
], ],

View File

@@ -40,6 +40,15 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"12" "12"
], ],
"filament_multitool_ramming": [
"0"
],
"filament_multitool_ramming_flow": [
"6"
],
"filament_multitool_ramming_volume": [
"0.1"
],
"filament_soluble": [ "filament_soluble": [
"1" "1"
], ],

View File

@@ -11,6 +11,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"12" "12"
], ],
"filament_multitool_ramming_flow": [
"12"
],
"filament_type": [ "filament_type": [
"SBS" "SBS"
], ],

View File

@@ -43,6 +43,15 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"3.2" "3.2"
], ],
"filament_multitool_ramming": [
"0"
],
"filament_multitool_ramming_flow": [
"3.2"
],
"filament_multitool_ramming_volume": [
"0.1"
],
"filament_retraction_length": [ "filament_retraction_length": [
"0.4" "0.4"
], ],

View File

@@ -17,6 +17,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"8" "8"
], ],
"filament_multitool_ramming_flow": [
"8"
],
"filament_vendor": [ "filament_vendor": [
"eSUN" "eSUN"
], ],

View File

@@ -17,6 +17,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"8" "8"
], ],
"filament_multitool_ramming_flow": [
"8"
],
"filament_vendor": [ "filament_vendor": [
"eSUN" "eSUN"
], ],

View File

@@ -21,6 +21,9 @@
"filament_max_volumetric_speed": [ "filament_max_volumetric_speed": [
"6" "6"
], ],
"filament_multitool_ramming_flow": [
"6"
],
"filament_vendor": [ "filament_vendor": [
"eSUN" "eSUN"
], ],

View File

@@ -1,6 +1,6 @@
{ {
"name": "Snapmaker", "name": "Snapmaker",
"version": "02.04.00.07", "version": "02.04.00.08",
"force_update": "0", "force_update": "0",
"description": "Snapmaker configurations", "description": "Snapmaker configurations",
"machine_model_list": [ "machine_model_list": [
@@ -426,10 +426,6 @@
"name": "0.16 Optimal @Snapmaker U1 (0.4 nozzle)", "name": "0.16 Optimal @Snapmaker U1 (0.4 nozzle)",
"sub_path": "process/0.16 Optimal @Snapmaker U1 (0.4 nozzle).json" "sub_path": "process/0.16 Optimal @Snapmaker U1 (0.4 nozzle).json"
}, },
{
"name": "0.20 Bambu Support W @Snapmaker U1 (0.4 nozzle)",
"sub_path": "process/0.20 Bambu Support W @Snapmaker U1 (0.4 nozzle).json"
},
{ {
"name": "0.20 Quality @Snapmaker U1 (0.4 nozzle)", "name": "0.20 Quality @Snapmaker U1 (0.4 nozzle)",
"sub_path": "process/0.20 Quality @Snapmaker U1 (0.4 nozzle).json" "sub_path": "process/0.20 Quality @Snapmaker U1 (0.4 nozzle).json"
@@ -486,6 +482,66 @@
"name": "fdm_process_U1_0.8_common", "name": "fdm_process_U1_0.8_common",
"sub_path": "process/fdm_process_U1_0.8_common.json" "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)", "name": "0.06 High Quality @Snapmaker U1 (0.2 nozzle)",
"sub_path": "process/0.06 High Quality @Snapmaker U1 (0.2 nozzle).json" "sub_path": "process/0.06 High Quality @Snapmaker U1 (0.2 nozzle).json"
@@ -1508,10 +1564,6 @@
"name": "Snapmaker PLA Metal @U1", "name": "Snapmaker PLA Metal @U1",
"sub_path": "filament/Snapmaker PLA Metal @U1.json" "sub_path": "filament/Snapmaker PLA Metal @U1.json"
}, },
{
"name": "Snapmaker PLA Silk @U1",
"sub_path": "filament/Snapmaker PLA Silk @U1.json"
},
{ {
"name": "Snapmaker PLA Silk", "name": "Snapmaker PLA Silk",
"sub_path": "filament/Snapmaker PLA Silk.json" "sub_path": "filament/Snapmaker PLA Silk.json"
@@ -1671,6 +1723,214 @@
{ {
"name": "Snapmaker PLA Matte @U1 base", "name": "Snapmaker PLA Matte @U1 base",
"sub_path": "filament/Snapmaker PLA Matte @U1 base.json" "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"
},
{
"name": "Snapmaker Breakaway Support For PLA @U1 0.6 nozzle",
"sub_path": "filament/Snapmaker Breakaway Support For PLA @U1 0.6 nozzle.json"
},
{
"name": "Snapmaker Breakaway Support For PLA @U1 0.8 nozzle",
"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": "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"
} }
], ],
"machine_list": [ "machine_list": [

View File

@@ -0,0 +1,32 @@
{
"type": "filament",
"name": "Polymaker General PLA Family @U1",
"inherits": "Polymaker PLA @U1 base",
"from": "system",
"setting_id": "thXfSaUkOAKJ50ey",
"instantiation": "true",
"compatible_printers": [
"Snapmaker U1 (0.4 nozzle)"
],
"enable_pressure_advance": [
"0"
],
"filament_max_volumetric_speed": [
"15"
],
"filament_vendor": [
"Polymaker"
],
"nozzle_temperature_range_high": [
"230"
],
"temperature_vitrification": [
"62"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
]
}

View File

@@ -0,0 +1,107 @@
{
"type": "filament",
"name": "Polymaker PLA @U1 base",
"inherits": "fdm_filament_pla",
"from": "system",
"filament_id": "OGFL99",
"instantiation": "false",
"compatible_printers": [
"Snapmaker U1 (0.4 nozzle)"
],
"activate_air_filtration": [
"0"
],
"chamber_temperatures": [
"0"
],
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"35"
],
"cool_plate_temp_initial_layer": [
"35"
],
"during_print_exhaust_fan_speed": [
"70"
],
"filament_cost": [
"20"
],
"filament_long_retractions_when_cut": [
"nil"
],
"filament_max_volumetric_speed": [
"12"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_retraction_distances_when_cut": [
"nil"
],
"filament_retraction_length": [
"nil"
],
"filament_retraction_speed": [
"nil"
],
"filament_vendor": [
"Generic"
],
"filament_scarf_seam_type": [
"none"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_length": [
"10"
],
"filament_shrink": [
"100%"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"nozzle_temperature": [
"220"
],
"overhang_fan_threshold": [
"50%"
],
"supertack_plate_temp": [
"45"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"slow_down_layer_time": [
"4"
],
"slow_down_min_speed": [
"10"
],
"temperature_vitrification": [
"45"
],
"textured_plate_temp": [
"55"
],
"textured_plate_temp_initial_layer": [
"55"
],
"filament_start_gcode": [
"; Filament gcode\n"
],
"filament_end_gcode": [
"; filament end gcode\n"
]
}

View File

@@ -0,0 +1,32 @@
{
"type": "filament",
"name": "Polymaker Silk PLA Family @U1",
"inherits": "Polymaker PLA @U1 base",
"from": "system",
"setting_id": "h8vIYpXbxFtHPV6e",
"instantiation": "true",
"compatible_printers": [
"Snapmaker U1 (0.4 nozzle)"
],
"filament_density": [
"1.34"
],
"filament_vendor": [
"Polymaker"
],
"nozzle_temperature": [
"230"
],
"nozzle_temperature_initial_layer": [
"230"
],
"nozzle_temperature_range_high": [
"230"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
]
}

View File

@@ -0,0 +1,32 @@
{
"type": "filament",
"name": "Polymaker Tough PLA Family @U1",
"inherits": "Polymaker PLA @U1 base",
"from": "system",
"setting_id": "d6CC81Es2hp46bto",
"instantiation": "true",
"compatible_printers": [
"Snapmaker U1 (0.4 nozzle)"
],
"filament_density": [
"1.23"
],
"filament_flow_ratio": [
"0.96"
],
"filament_vendor": [
"Polymaker"
],
"slow_down_layer_time": [
"6"
],
"temperature_vitrification": [
"55"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
]
}

View File

@@ -11,7 +11,6 @@
"filament_minimal_purge_on_wipe_tower": [ "filament_minimal_purge_on_wipe_tower": [
"15" "15"
], ],
"pressure_advance": [ "pressure_advance": [
"0.05" "0.05"
] ]

View File

@@ -17,7 +17,6 @@
"filament_z_hop": [ "filament_z_hop": [
"0.0" "0.0"
], ],
"enable_pressure_advance": [ "enable_pressure_advance": [
"1" "1"
], ],

View File

@@ -17,7 +17,6 @@
"filament_z_hop": [ "filament_z_hop": [
"0.0" "0.0"
], ],
"enable_pressure_advance": [ "enable_pressure_advance": [
"1" "1"
], ],

View File

@@ -17,7 +17,6 @@
"supertack_plate_temp_initial_layer": [ "supertack_plate_temp_initial_layer": [
"70" "70"
], ],
"pressure_advance": [ "pressure_advance": [
"0.04" "0.04"
] ]

View File

@@ -1,10 +1,10 @@
{ {
"type": "filament", "type": "filament",
"from": "system",
"instantiation": "true",
"name": "PolyLite Dual PLA @0.2 nozzle", "name": "PolyLite Dual PLA @0.2 nozzle",
"setting_id": "jhmy4YHi9MuL0DWu",
"inherits": "PolyLite PLA @0.2 nozzle", "inherits": "PolyLite PLA @0.2 nozzle",
"from": "system",
"setting_id": "jhmy4YHi9MuL0DWu",
"instantiation": "true",
"compatible_printers": [ "compatible_printers": [
"Snapmaker A250 Dual (0.2 nozzle)", "Snapmaker A250 Dual (0.2 nozzle)",
"Snapmaker A250 Dual BKit (0.2 nozzle)", "Snapmaker A250 Dual BKit (0.2 nozzle)",

View File

@@ -1,10 +1,10 @@
{ {
"type": "filament", "type": "filament",
"from": "system",
"instantiation": "true",
"name": "PolyLite J1 PLA @0.2 nozzle", "name": "PolyLite J1 PLA @0.2 nozzle",
"setting_id": "jFlRSxx0KvN3BOUu",
"inherits": "PolyLite PLA @0.2 nozzle", "inherits": "PolyLite PLA @0.2 nozzle",
"from": "system",
"setting_id": "jFlRSxx0KvN3BOUu",
"instantiation": "true",
"compatible_printers": [ "compatible_printers": [
"Snapmaker J1 (0.2 nozzle)" "Snapmaker J1 (0.2 nozzle)"
] ]

View File

@@ -1,10 +1,10 @@
{ {
"type": "filament", "type": "filament",
"from": "system",
"instantiation": "true",
"name": "PolyLite J1 PLA", "name": "PolyLite J1 PLA",
"setting_id": "wcpOTTMyZNPFKyXr",
"inherits": "PolyLite PLA @base", "inherits": "PolyLite PLA @base",
"from": "system",
"setting_id": "wcpOTTMyZNPFKyXr",
"instantiation": "true",
"compatible_printers": [ "compatible_printers": [
"Snapmaker J1 (0.4 nozzle)", "Snapmaker J1 (0.4 nozzle)",
"Snapmaker J1 (0.6 nozzle)", "Snapmaker J1 (0.6 nozzle)",

View File

@@ -1,4 +1,9 @@
{ {
"type": "filament",
"name": "PolyLite PETG @Base",
"inherits": "fdm_filament_petg",
"from": "system",
"instantiation": "false",
"filament_density": [ "filament_density": [
"1.25" "1.25"
], ],
@@ -18,11 +23,6 @@
"0" "0"
], ],
"description": "", "description": "",
"inherits": "fdm_filament_petg",
"name": "PolyLite PETG @Base",
"type": "filament",
"instantiation": "false",
"from": "system",
"filament_vendor": [ "filament_vendor": [
"Polymaker" "Polymaker"
] ]

View File

@@ -17,7 +17,6 @@
"supertack_plate_temp_initial_layer": [ "supertack_plate_temp_initial_layer": [
"70" "70"
], ],
"pressure_advance": [ "pressure_advance": [
"0.05" "0.05"
] ]

View File

@@ -17,7 +17,6 @@
"supertack_plate_temp_initial_layer": [ "supertack_plate_temp_initial_layer": [
"70" "70"
], ],
"pressure_advance": [ "pressure_advance": [
"0.05" "0.05"
] ]

View File

@@ -1,10 +1,10 @@
{ {
"type": "filament", "type": "filament",
"from": "system",
"instantiation": "true",
"name": "PolyLite PLA @0.2 nozzle", "name": "PolyLite PLA @0.2 nozzle",
"setting_id": "s9mdMaFca8SHfji9",
"inherits": "PolyLite PLA @base", "inherits": "PolyLite PLA @base",
"from": "system",
"setting_id": "s9mdMaFca8SHfji9",
"instantiation": "true",
"compatible_printers": [ "compatible_printers": [
"Snapmaker A250 (0.2 nozzle)", "Snapmaker A250 (0.2 nozzle)",
"Snapmaker A250 BKit (0.2 nozzle)", "Snapmaker A250 BKit (0.2 nozzle)",

View File

@@ -1,10 +1,10 @@
{ {
"type": "filament", "type": "filament",
"from": "system",
"instantiation": "false",
"name": "PolyLite PLA @base", "name": "PolyLite PLA @base",
"filament_id": "1393866034",
"inherits": "fdm_filament_pla", "inherits": "fdm_filament_pla",
"from": "system",
"filament_id": "1393866034",
"instantiation": "false",
"filament_flow_ratio": [ "filament_flow_ratio": [
"0.95" "0.95"
], ],

View File

@@ -1,10 +1,10 @@
{ {
"type": "filament", "type": "filament",
"from": "system",
"instantiation": "true",
"name": "PolyTerra Dual PLA @0.2 nozzle", "name": "PolyTerra Dual PLA @0.2 nozzle",
"setting_id": "UQYgjH1uVxf3d2Nv",
"inherits": "PolyTerra PLA @0.2 nozzle", "inherits": "PolyTerra PLA @0.2 nozzle",
"from": "system",
"setting_id": "UQYgjH1uVxf3d2Nv",
"instantiation": "true",
"compatible_printers": [ "compatible_printers": [
"Snapmaker A250 Dual (0.2 nozzle)", "Snapmaker A250 Dual (0.2 nozzle)",
"Snapmaker A250 Dual BKit (0.2 nozzle)", "Snapmaker A250 Dual BKit (0.2 nozzle)",

View File

@@ -1,10 +1,10 @@
{ {
"type": "filament", "type": "filament",
"from": "system",
"instantiation": "true",
"name": "PolyTerra J1 PLA @0.2 nozzle", "name": "PolyTerra J1 PLA @0.2 nozzle",
"setting_id": "mxKHxGmBZzPLS82O",
"inherits": "PolyTerra PLA @0.2 nozzle", "inherits": "PolyTerra PLA @0.2 nozzle",
"from": "system",
"setting_id": "mxKHxGmBZzPLS82O",
"instantiation": "true",
"compatible_printers": [ "compatible_printers": [
"Snapmaker J1 (0.2 nozzle)" "Snapmaker J1 (0.2 nozzle)"
] ]

View File

@@ -1,10 +1,10 @@
{ {
"type": "filament", "type": "filament",
"from": "system",
"instantiation": "true",
"name": "PolyTerra J1 PLA", "name": "PolyTerra J1 PLA",
"setting_id": "4MZWZX7QPBzxdEGj",
"inherits": "PolyTerra PLA @base", "inherits": "PolyTerra PLA @base",
"from": "system",
"setting_id": "4MZWZX7QPBzxdEGj",
"instantiation": "true",
"compatible_printers": [ "compatible_printers": [
"Snapmaker J1 (0.4 nozzle)", "Snapmaker J1 (0.4 nozzle)",
"Snapmaker J1 (0.6 nozzle)", "Snapmaker J1 (0.6 nozzle)",

View File

@@ -1,10 +1,10 @@
{ {
"type": "filament", "type": "filament",
"from": "system",
"instantiation": "true",
"name": "PolyTerra PLA @0.2 nozzle", "name": "PolyTerra PLA @0.2 nozzle",
"setting_id": "6W1ygT08NordBdIW",
"inherits": "PolyTerra PLA @base", "inherits": "PolyTerra PLA @base",
"from": "system",
"setting_id": "6W1ygT08NordBdIW",
"instantiation": "true",
"compatible_printers": [ "compatible_printers": [
"Snapmaker A250 (0.2 nozzle)", "Snapmaker A250 (0.2 nozzle)",
"Snapmaker A250 BKit (0.2 nozzle)", "Snapmaker A250 BKit (0.2 nozzle)",

View File

@@ -1,4 +1,9 @@
{ {
"type": "filament",
"name": "Polymaker HT-PLA @Base",
"inherits": "fdm_filament_pla",
"from": "system",
"instantiation": "false",
"filament_density": [ "filament_density": [
"1.28" "1.28"
], ],
@@ -18,11 +23,6 @@
"0" "0"
], ],
"description": "", "description": "",
"inherits": "fdm_filament_pla",
"name": "Polymaker HT-PLA @Base",
"type": "filament",
"instantiation": "false",
"from": "system",
"filament_vendor": [ "filament_vendor": [
"Polymaker" "Polymaker"
] ]

View File

@@ -1,4 +1,9 @@
{ {
"type": "filament",
"name": "Polymaker HT-PLA-GF @Base",
"inherits": "fdm_filament_pla",
"from": "system",
"instantiation": "false",
"filament_density": [ "filament_density": [
"1.34" "1.34"
], ],
@@ -18,11 +23,6 @@
"0" "0"
], ],
"description": "", "description": "",
"inherits": "fdm_filament_pla",
"name": "Polymaker HT-PLA-GF @Base",
"type": "filament",
"instantiation": "false",
"from": "system",
"filament_vendor": [ "filament_vendor": [
"Polymaker" "Polymaker"
] ]

View File

@@ -1,4 +1,9 @@
{ {
"type": "filament",
"name": "Polymaker PETG @Base",
"inherits": "fdm_filament_petg",
"from": "system",
"instantiation": "false",
"filament_density": [ "filament_density": [
"1.3" "1.3"
], ],
@@ -18,11 +23,6 @@
"0" "0"
], ],
"description": "", "description": "",
"inherits": "fdm_filament_petg",
"name": "Polymaker PETG @Base",
"type": "filament",
"instantiation": "false",
"from": "system",
"filament_vendor": [ "filament_vendor": [
"Polymaker" "Polymaker"
] ]

View File

@@ -1,4 +1,9 @@
{ {
"type": "filament",
"name": "Polymaker PLA Pro @Base",
"inherits": "fdm_filament_pla",
"from": "system",
"instantiation": "false",
"filament_density": [ "filament_density": [
"1.23" "1.23"
], ],
@@ -18,11 +23,6 @@
"0" "0"
], ],
"description": "", "description": "",
"inherits": "fdm_filament_pla",
"name": "Polymaker PLA Pro @Base",
"type": "filament",
"instantiation": "false",
"from": "system",
"filament_vendor": [ "filament_vendor": [
"Polymaker" "Polymaker"
] ]

View File

@@ -7,5 +7,8 @@
"instantiation": "true", "instantiation": "true",
"compatible_printers": [ "compatible_printers": [
"Snapmaker U1 (0.4 nozzle)" "Snapmaker U1 (0.4 nozzle)"
],
"filament_retract_length_toolchange": [
"5"
] ]
} }

View File

@@ -7,5 +7,8 @@
"instantiation": "true", "instantiation": "true",
"compatible_printers": [ "compatible_printers": [
"Snapmaker U1 (0.4 nozzle)" "Snapmaker U1 (0.4 nozzle)"
],
"filament_retract_length_toolchange": [
"5"
] ]
} }

View File

@@ -0,0 +1,104 @@
{
"type": "filament",
"name": "Snapmaker Breakaway Support For PLA @U1 0.2 nozzle",
"inherits": "Snapmaker Breakaway Support @base",
"from": "system",
"setting_id": "mJoaud6wulT4p8SA",
"instantiation": "true",
"compatible_printers": [
"Snapmaker U1 (0.2 nozzle)"
],
"filament_type": [
"PLA"
],
"enable_pressure_advance": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"close_fan_the_first_x_layers": [
"1"
],
"complete_print_exhaust_fan_speed": [
"70"
],
"during_print_exhaust_fan_speed": [
"70"
],
"fan_max_speed": [
"30"
],
"fan_min_speed": [
"20"
],
"filament_cost": [
"69.98"
],
"filament_density": [
"1.3"
],
"filament_deretraction_speed": [
"nil"
],
"filament_flow_ratio": [
"1"
],
"filament_max_volumetric_speed": [
"0.5"
],
"filament_retract_length_toolchange": [
"10"
],
"filament_retraction_length": [
"nil"
],
"filament_retraction_speed": [
"nil"
],
"hot_plate_temp_initial_layer": [
"65"
],
"nozzle_temperature": [
"240"
],
"nozzle_temperature_initial_layer": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"pressure_advance": [
"0.2"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"filament_cooling_moves": [
"4"
],
"filament_loading_speed": [
"28"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_multitool_ramming": [
"1"
],
"filament_multitool_ramming_flow": [
"5"
],
"filament_multitool_ramming_volume": [
"5"
],
"filament_unloading_speed": [
"90"
],
"filament_unloading_speed_start": [
"100"
]
}

View File

@@ -0,0 +1,104 @@
{
"type": "filament",
"name": "Snapmaker Breakaway Support For PLA @U1 0.6 nozzle",
"inherits": "Snapmaker Breakaway Support @base",
"from": "system",
"setting_id": "rKUUREJNhstIU0I2",
"instantiation": "true",
"compatible_printers": [
"Snapmaker U1 (0.6 nozzle)"
],
"filament_type": [
"PLA"
],
"enable_pressure_advance": [
"0"
],
"filament_cost": [
"69.98"
],
"filament_density": [
"1.3"
],
"filament_flow_ratio": [
"0.95"
],
"hot_plate_temp_initial_layer": [
"65"
],
"nozzle_temperature": [
"210"
],
"nozzle_temperature_initial_layer": [
"210"
],
"nozzle_temperature_range_low": [
"190"
],
"pressure_advance": [
"0.02"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"additional_cooling_fan_speed": [
"70"
],
"close_fan_the_first_x_layers": [
"1"
],
"complete_print_exhaust_fan_speed": [
"70"
],
"during_print_exhaust_fan_speed": [
"70"
],
"fan_min_speed": [
"100"
],
"filament_deretraction_speed": [
"nil"
],
"filament_retract_length_toolchange": [
"10"
],
"filament_retraction_length": [
"nil"
],
"filament_retraction_minimum_travel": [
"1"
],
"filament_retraction_speed": [
"nil"
],
"filament_wipe_distance": [
"2"
],
"filament_cooling_moves": [
"4"
],
"filament_loading_speed": [
"28"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_multitool_ramming": [
"1"
],
"filament_multitool_ramming_flow": [
"20"
],
"filament_multitool_ramming_volume": [
"5"
],
"filament_unloading_speed": [
"90"
],
"filament_unloading_speed_start": [
"100"
]
}

View File

@@ -0,0 +1,98 @@
{
"type": "filament",
"name": "Snapmaker Breakaway Support For PLA @U1 0.8 nozzle",
"inherits": "Snapmaker Breakaway Support @base",
"from": "system",
"setting_id": "hQ8jQ5GKQKGKuPew",
"instantiation": "true",
"compatible_printers": [
"Snapmaker U1 (0.8 nozzle)"
],
"filament_type": [
"PLA"
],
"enable_pressure_advance": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"close_fan_the_first_x_layers": [
"1"
],
"complete_print_exhaust_fan_speed": [
"70"
],
"during_print_exhaust_fan_speed": [
"70"
],
"filament_cost": [
"69.98"
],
"filament_density": [
"1.3"
],
"filament_deretraction_speed": [
"nil"
],
"filament_flow_ratio": [
"0.93"
],
"filament_retract_length_toolchange": [
"10"
],
"filament_retraction_length": [
"3"
],
"filament_retraction_speed": [
"nil"
],
"hot_plate_temp_initial_layer": [
"65"
],
"nozzle_temperature": [
"210"
],
"nozzle_temperature_initial_layer": [
"210"
],
"nozzle_temperature_range_low": [
"190"
],
"pressure_advance": [
"0.015"
],
"textured_plate_temp_initial_layer": [
"65"
],
"filament_cooling_moves": [
"4"
],
"filament_loading_speed": [
"28"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_multitool_ramming": [
"1"
],
"filament_multitool_ramming_flow": [
"20"
],
"filament_multitool_ramming_volume": [
"5"
],
"filament_unloading_speed": [
"90"
],
"filament_unloading_speed_start": [
"100"
],
"fan_min_speed": [
"100"
],
"textured_plate_temp": [
"65"
]
}

View File

@@ -10,5 +10,83 @@
], ],
"filament_type": [ "filament_type": [
"PLA" "PLA"
],
"enable_pressure_advance": [
"1"
],
"additional_cooling_fan_speed": [
"70"
],
"close_fan_the_first_x_layers": [
"1"
],
"complete_print_exhaust_fan_speed": [
"70"
],
"during_print_exhaust_fan_speed": [
"70"
],
"fan_min_speed": [
"100"
],
"filament_cooling_moves": [
"4"
],
"filament_deretraction_speed": [
"nil"
],
"filament_flow_ratio": [
"1"
],
"filament_loading_speed": [
"28"
],
"filament_minimal_purge_on_wipe_tower": [
"20"
],
"filament_multitool_ramming": [
"1"
],
"filament_multitool_ramming_flow": [
"20"
],
"filament_multitool_ramming_volume": [
"5"
],
"filament_retract_length_toolchange": [
"5"
],
"filament_retraction_length": [
"1"
],
"filament_retraction_speed": [
"nil"
],
"filament_unloading_speed": [
"90"
],
"filament_unloading_speed_start": [
"100"
],
"hot_plate_temp_initial_layer": [
"65"
],
"nozzle_temperature": [
"210"
],
"nozzle_temperature_initial_layer": [
"210"
],
"nozzle_temperature_range_low": [
"190"
],
"pressure_advance": [
"0.03"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
] ]
} }

View File

@@ -0,0 +1,108 @@
{
"type": "filament",
"name": "Snapmaker PETG HF @U1 0.2 nozzle",
"inherits": "Snapmaker PETG HF @U1 base2",
"from": "system",
"setting_id": "Ujul2YTBwfldFiFd",
"instantiation": "true",
"filament_max_volumetric_speed": [
"1",
"1"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"long_retractions_when_ec": [
"0",
"0"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"compatible_printers": [
"Snapmaker U1 (0.2 nozzle)"
],
"additional_cooling_fan_speed": [
"70"
],
"eng_plate_temp": [
"80"
],
"eng_plate_temp_initial_layer": [
"80"
],
"fan_cooling_layer_time": [
"20"
],
"fan_max_speed": [
"60"
],
"fan_min_speed": [
"30"
],
"filament_end_gcode": [
"\n\n"
],
"filament_multitool_ramming": [
"1"
],
"filament_multitool_ramming_flow": [
"3"
],
"filament_multitool_ramming_volume": [
"5"
],
"filament_retract_length_toolchange": [
"5"
],
"filament_retraction_length": [
"1.5"
],
"filament_start_gcode": [
""
],
"filament_vendor": [
"Snapmaker"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"nozzle_temperature": [
"245"
],
"nozzle_temperature_initial_layer": [
"245"
],
"nozzle_temperature_range_low": [
"230"
],
"overhang_fan_speed": [
"100"
],
"slow_down_layer_time": [
"10"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"60"
],
"supertack_plate_temp_initial_layer": [
"60"
],
"textured_plate_temp": [
"80"
],
"textured_plate_temp_initial_layer": [
"80"
],
"filament_z_hop_types": [
"Slope Lift"
]
}

View File

@@ -0,0 +1,113 @@
{
"type": "filament",
"name": "Snapmaker PETG HF @U1 0.6 nozzle",
"inherits": "Snapmaker PETG HF @U1 base2",
"from": "system",
"setting_id": "2FfQZdp5xunngnF0",
"instantiation": "true",
"filament_ramming_travel_time": [
"0",
"0"
],
"long_retractions_when_ec": [
"0",
"0"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"compatible_printers": [
"Snapmaker U1 (0.6 nozzle)"
],
"additional_cooling_fan_speed": [
"70"
],
"eng_plate_temp": [
"80"
],
"eng_plate_temp_initial_layer": [
"80"
],
"fan_cooling_layer_time": [
"20"
],
"fan_max_speed": [
"60"
],
"fan_min_speed": [
"30"
],
"filament_end_gcode": [
"\n"
],
"filament_max_volumetric_speed": [
"20"
],
"filament_multitool_ramming": [
"1"
],
"filament_multitool_ramming_flow": [
"20"
],
"filament_multitool_ramming_volume": [
"5"
],
"filament_retract_length_toolchange": [
"5"
],
"filament_retraction_length": [
"2.5"
],
"filament_start_gcode": [
""
],
"filament_vendor": [
"Snapmaker"
],
"filament_wipe": [
"1"
],
"filament_wipe_distance": [
"1"
],
"filament_z_hop_types": [
"Slope Lift"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"nozzle_temperature": [
"245"
],
"nozzle_temperature_initial_layer": [
"245"
],
"nozzle_temperature_range_low": [
"230"
],
"overhang_fan_speed": [
"100"
],
"slow_down_layer_time": [
"10"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"60"
],
"supertack_plate_temp_initial_layer": [
"60"
],
"textured_plate_temp": [
"80"
],
"textured_plate_temp_initial_layer": [
"80"
]
}

View File

@@ -0,0 +1,110 @@
{
"type": "filament",
"name": "Snapmaker PETG HF @U1 0.8 nozzle",
"inherits": "Snapmaker PETG HF @U1 base2",
"from": "system",
"setting_id": "ebANa67V4B2nwUaX",
"instantiation": "true",
"filament_ramming_travel_time": [
"0",
"0"
],
"long_retractions_when_ec": [
"0",
"0"
],
"retraction_distances_when_ec": [
"0",
"0"
],
"compatible_printers": [
"Snapmaker U1 (0.8 nozzle)"
],
"additional_cooling_fan_speed": [
"70"
],
"eng_plate_temp": [
"80"
],
"eng_plate_temp_initial_layer": [
"80"
],
"fan_cooling_layer_time": [
"20"
],
"fan_max_speed": [
"60"
],
"fan_min_speed": [
"30"
],
"filament_max_volumetric_speed": [
"20"
],
"filament_multitool_ramming": [
"1"
],
"filament_multitool_ramming_flow": [
"20"
],
"filament_multitool_ramming_volume": [
"5"
],
"filament_retract_length_toolchange": [
"5"
],
"filament_retraction_length": [
"1"
],
"filament_start_gcode": [
""
],
"filament_vendor": [
"Snapmaker"
],
"filament_wipe": [
"1"
],
"filament_wipe_distance": [
"2"
],
"filament_z_hop_types": [
"Slope Lift"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"nozzle_temperature": [
"245"
],
"nozzle_temperature_initial_layer": [
"245"
],
"nozzle_temperature_range_low": [
"230"
],
"overhang_fan_speed": [
"100"
],
"slow_down_layer_time": [
"10"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"60"
],
"supertack_plate_temp_initial_layer": [
"60"
],
"textured_plate_temp": [
"80"
],
"textured_plate_temp_initial_layer": [
"80"
]
}

View File

@@ -0,0 +1,279 @@
{
"type": "filament",
"name": "Snapmaker PETG HF @U1 base2",
"inherits": "fdm_filament_petg",
"from": "system",
"filament_id": "GFG96",
"instantiation": "false",
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"eng_plate_temp": [
"70"
],
"eng_plate_temp_initial_layer": [
"70"
],
"filament_type": [
"PETG"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"40"
],
"filament_cost": [
"24.99"
],
"filament_density": [
"1.28"
],
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"16"
],
"hot_plate_temp": [
"70"
],
"hot_plate_temp_initial_layer": [
"70"
],
"nozzle_temperature_range_high": [
"270"
],
"nozzle_temperature": [
"220"
],
"nozzle_temperature_initial_layer": [
"220"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"slow_down_layer_time": [
"25"
],
"textured_plate_temp": [
"70"
],
"textured_plate_temp_initial_layer": [
"70"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"0"
],
"close_fan_the_first_x_layers": [
"3"
],
"complete_print_exhaust_fan_speed": [
"70"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_min": [
"-0.035"
],
"counter_limit_max": [
"0.033"
],
"circle_compensation_speed": [
"200"
],
"during_print_exhaust_fan_speed": [
"70"
],
"diameter_limit": [
"50"
],
"fan_min_speed": [
"20"
],
"filament_cooling_before_tower": [
"0"
],
"filament_dev_ams_drying_ams_limitations": [
"0"
],
"filament_dev_ams_drying_temperature": [
"40.0"
],
"filament_dev_ams_drying_time": [
"8.0"
],
"filament_dev_drying_softening_temperature": [
"40.0"
],
"filament_dev_ams_drying_heat_distortion_temperature": [
"45.0"
],
"filament_dev_drying_cooling_temperature": [
"35.0"
],
"filament_dev_chamber_drying_bed_temperature": [
"90.0"
],
"filament_dev_chamber_drying_time": [
"12.0"
],
"filament_flush_temp": [
"0"
],
"filament_flush_volumetric_speed": [
"0"
],
"filament_long_retractions_when_cut": [
"nil"
],
"filament_long_retractions_when_ec": [
"nil"
],
"filament_ramming_volumetric_speed": [
"-1"
],
"filament_ramming_volumetric_speed_nc": [
"-1"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_printable": [
"3"
],
"filament_retraction_distances_when_cut": [
"nil"
],
"filament_retraction_distances_when_ec": [
"nil"
],
"filament_retraction_length": [
"nil"
],
"filament_retraction_minimum_travel": [
"nil"
],
"filament_vendor": [
"Generic"
],
"filament_prime_volume": [
"45"
],
"filament_prime_volume_nc": [
"60"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_scarf_seam_type": [
"none"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_length": [
"10"
],
"filament_shrink": [
"100%"
],
"filament_pre_cooling_temperature": [
"0"
],
"filament_pre_cooling_temperature_nc": [
"0"
],
"filament_ramming_travel_time": [
"0"
],
"filament_ramming_travel_time_nc": [
"0"
],
"filament_retract_length_nc": [
"14"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_min": [
"0.088"
],
"hole_limit_max": [
"0.22"
],
"impact_strength_z": [
"10"
],
"long_retractions_when_ec": [
"0"
],
"retraction_distances_when_ec": [
"0"
],
"supertack_plate_temp": [
"70"
],
"supertack_plate_temp_initial_layer": [
"70"
],
"no_slow_down_for_cooling_on_outwalls": [
"0"
],
"slow_down_min_speed": [
"10"
],
"temperature_vitrification": [
"70"
],
"filament_change_length": [
"10"
],
"filament_velocity_adaptation_factor": [
"1"
],
"compatible_printers": [],
"filament_end_gcode": [
"; filament end gcode \n\n"
],
"filament_adaptive_volumetric_speed": [
"0"
],
"volumetric_speed_coefficients": [
"0 0 0 0 0 0"
],
"filament_adhesiveness_category": [
"300"
]
}

Some files were not shown because too many files have changed in this diff Show More