Profile rework (#4)
* default BBL profile * voron * wip * Voron profile * Prusa MK3S * add Prusa mk3s * fix an issue that print_host value was not retrieved. * add chamber temperature option for filament * slightly adjust thumbernail angle * Revert "slightly adjust thumbernail angle" This reverts commit 6ad38efb36c66abe82c7fdeb23f6a24aac43654e. * add `one wall on first layer` option * save preset for connection * remove unused options * set default 3000 accl for MK3S * tweak profile * update Voron logo * UI twwaks * Readme update * change abs default nozzle temp * misc * tweak profiles * Update README
74
README.md
|
@ -1,26 +1,78 @@
|
|||
|
||||
# Bambu Studio - SoftFever
|
||||
A modified version of Bambu Studio.
|
||||
It has following changes:
|
||||
|
||||
- Support third-party machines:
|
||||
- ## Support third-party printers:
|
||||
- Voron 2.4
|
||||
- Voron Trident
|
||||
- Voron 0.1
|
||||
- Prusa MK3S
|
||||
- Export to to .gcode file.
|
||||
- ## Export to to .gcode file.
|
||||

|
||||
|
||||
Video: https://youtu.be/zCc7mVwu2xQ
|
||||
- ## Send gcode file to printer
|
||||
1. Setup connection
|
||||
<img src="./SoftFever_doc/print_host.png" width="1024">
|
||||
2. Send to print
|
||||
<img src="./SoftFever_doc/send_to_print.png" width="1024">
|
||||
- ## Support single wall mode on first layer
|
||||

|
||||
- ## Support Chamber temperature. This setting can be use in machine start G-Gcode
|
||||

|
||||
<img src="./SoftFever_doc/chamber_temperature_custom_gcode.png" width="686">
|
||||
- ## Thumbview is supported
|
||||
|
||||
Demo video: https://youtu.be/vSNE9iGj2II
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
# NOTE:
|
||||
## - If you have troubles to run the build, you might need to install following runtimes:
|
||||
- [MicrosoftEdgeWebView2RuntimeInstallerX64](https://github.com/SoftFever/BambuStudio-SoftFever/releases/download/v1.0.10-sf2/MicrosoftEdgeWebView2RuntimeInstallerX64.exe)
|
||||
- [vcredist2019_x64](https://github.com/SoftFever/BambuStudio-SoftFever/releases/download/v1.0.10-sf2/vcredist2019_x64.exe)
|
||||
|
||||
## - BambuStudio use G2/G3 commands by default. You need to turn on ARC support in your printer's firmware use with this slicer.
|
||||
- For Voron and any Klipper based printers:
|
||||
You can enable gcode_arcs(G2/G3) support by adding following section into you printer.cfg file:
|
||||
```
|
||||
[gcode_arcs]
|
||||
resolution: 0.1
|
||||
|
||||
[gcode_macro M205]
|
||||
gcode:
|
||||
{% set x_jerk = params.X|default(5)|float %}
|
||||
{% set y_jerk = params.Y|default(5)|float %}
|
||||
SET_VELOCITY_LIMIT SQUARE_CORNER_VELOCITY={x_jerk}
|
||||
|
||||
```
|
||||
|
||||
It's also recommended to add followinging dummy macros to make Klipper happy
|
||||
```
|
||||
# Make BambuStudio happy
|
||||
[gcode_macro G17]
|
||||
gcode:
|
||||
|
||||
[gcode_macro M981]
|
||||
gcode:
|
||||
|
||||
[gcode_macro M1003]
|
||||
gcode:
|
||||
```
|
||||
|
||||
- For Prusa MK3S:
|
||||
ARC movement are supported by default.
|
||||
|
||||
|
||||
# Gallery
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
|
||||
|
||||
Image credits:
|
||||
1. Voron 2.4: vorondesign.com
|
||||
2. Voron bed texture: VoronUsers/bryansj
|
||||
1. Voron 2.4 and Trident: vorondesign.com
|
||||
3. Voron 0.1: myself
|
||||
4. Prusa MK3S: Prusa3d
|
||||
|
||||
|
|
BIN
SoftFever_doc/chamber_temperature.png
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
SoftFever_doc/chamber_temperature_custom_gcode.png
Normal file
After Width: | Height: | Size: 75 KiB |
BIN
SoftFever_doc/export_gcode.png
Normal file
After Width: | Height: | Size: 62 KiB |
BIN
SoftFever_doc/print_host.png
Normal file
After Width: | Height: | Size: 83 KiB |
BIN
SoftFever_doc/printers1.png
Normal file
After Width: | Height: | Size: 59 KiB |
BIN
SoftFever_doc/printers2.png
Normal file
After Width: | Height: | Size: 72 KiB |
BIN
SoftFever_doc/printers3.png
Normal file
After Width: | Height: | Size: 94 KiB |
BIN
SoftFever_doc/printers4.png
Normal file
After Width: | Height: | Size: 105 KiB |
BIN
SoftFever_doc/send_to_print.png
Normal file
After Width: | Height: | Size: 353 KiB |
BIN
SoftFever_doc/single_wall_first_layer.png
Normal file
After Width: | Height: | Size: 217 KiB |
BIN
SoftFever_doc/voron.png
Normal file
After Width: | Height: | Size: 158 KiB |
|
@ -4660,14 +4660,22 @@ msgid ""
|
|||
"material for bridge, to improve sag"
|
||||
msgstr "稍微减小这个数值(比如0.9)可以减小桥接的材料量,来改善下垂。"
|
||||
|
||||
msgid "Only one wall on top surfaces"
|
||||
msgstr "顶面单层墙"
|
||||
msgid "Only one wall on first layer"
|
||||
msgstr "首层单层墙"
|
||||
|
||||
msgid ""
|
||||
"Use only one wall on flat top surface, to give more space to the top infill "
|
||||
"pattern"
|
||||
msgstr "顶面只使用单层墙,从而更多的空间能够使用顶部填充图案"
|
||||
|
||||
msgid "Only one wall on top surfaces"
|
||||
msgstr "顶面单层墙"
|
||||
|
||||
msgid ""
|
||||
"Use only one wall on first layer, to give more space to the bottom infill pattern "
|
||||
"pattern"
|
||||
msgstr "首层只使用单层墙,从而更多的空间能够使用底部填充图案"
|
||||
|
||||
msgid "Slow down for overhang"
|
||||
msgstr "悬垂降速"
|
||||
|
||||
|
@ -5866,6 +5874,9 @@ msgstr "除首层外的其它层的喷嘴温度"
|
|||
msgid "Nozzle temperature"
|
||||
msgstr "喷嘴温度"
|
||||
|
||||
msgid "Chamber temperature"
|
||||
msgstr "机箱温度"
|
||||
|
||||
msgid "Bed temperature difference"
|
||||
msgstr "热床温差"
|
||||
|
||||
|
|
|
@ -12,30 +12,6 @@
|
|||
{
|
||||
"name": "Bambu Lab X1",
|
||||
"sub_path": "machine/Bambu Lab X1.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 2.4 250",
|
||||
"sub_path": "machine/Voron 2.4 250.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 2.4 300",
|
||||
"sub_path": "machine/Voron 2.4 300.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 2.4 350",
|
||||
"sub_path": "machine/Voron 2.4 350.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 0.1",
|
||||
"sub_path": "machine/Voron 0.1.json"
|
||||
},
|
||||
{
|
||||
"name": "Prusa MK3S",
|
||||
"sub_path": "machine/Prusa MK3S.json"
|
||||
},
|
||||
{
|
||||
"name": "Anycubic 4Max Pro",
|
||||
"sub_path": "machine/Anycubic 4Max Pro.json"
|
||||
}
|
||||
],
|
||||
"process_list": [
|
||||
|
@ -118,42 +94,6 @@
|
|||
{
|
||||
"name": "0.40mm Standard @BBL X1C 0.8 nozzle",
|
||||
"sub_path": "process/0.40mm Standard @BBL X1C 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_voron_common",
|
||||
"sub_path": "process/fdm_process_voron_common.json"
|
||||
},
|
||||
{
|
||||
"name": "0.08mm Extra Fine @Voron",
|
||||
"sub_path": "process/0.08mm Extra Fine @Voron.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Fine @Voron",
|
||||
"sub_path": "process/0.12mm Fine @Voron.json"
|
||||
},
|
||||
{
|
||||
"name": "0.15mm Optimal @Voron",
|
||||
"sub_path": "process/0.15mm Optimal @Voron.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Voron",
|
||||
"sub_path": "process/0.20mm Standard @Voron.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Voron",
|
||||
"sub_path": "process/0.24mm Draft @Voron.json"
|
||||
},
|
||||
{
|
||||
"name": "0.28mm Extra Draft @Voron",
|
||||
"sub_path": "process/0.28mm Extra Draft @Voron.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @MK3S",
|
||||
"sub_path": "process/0.20mm Standard @MK3S.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @A4MaxPro",
|
||||
"sub_path": "process/0.20mm Standard @A4MaxPro.json"
|
||||
}
|
||||
],
|
||||
"filament_list": [
|
||||
|
@ -406,34 +346,6 @@
|
|||
{
|
||||
"name": "Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"sub_path": "machine/Bambu Lab X1 Carbon 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_klipper_common",
|
||||
"sub_path": "machine/fdm_klipper_common.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 2.4 250 0.4 nozzle",
|
||||
"sub_path": "machine/Voron 2.4 250 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 2.4 300 0.4 nozzle",
|
||||
"sub_path": "machine/Voron 2.4 300 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 2.4 350 0.4 nozzle",
|
||||
"sub_path": "machine/Voron 2.4 350 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 0.1 0.4 nozzle",
|
||||
"sub_path": "machine/Voron 0.1 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Prusa MK3S 0.4 nozzle",
|
||||
"sub_path": "machine/Prusa MK3S 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Anycubic 4Max Pro 0.4 nozzle",
|
||||
"sub_path": "machine/Anycubic 4Max Pro 0.4 nozzle.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -10,12 +10,6 @@
|
|||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Prusa MK3S 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle"
|
||||
]
|
||||
|
|
|
@ -9,9 +9,6 @@
|
|||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle"
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -7,12 +7,6 @@
|
|||
"inherits": "Bambu PC @base",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Prusa MK3S 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle"
|
||||
]
|
||||
|
|
|
@ -22,12 +22,6 @@
|
|||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Prusa MK3S 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -10,12 +10,6 @@
|
|||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Prusa MK3S 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -10,12 +10,6 @@
|
|||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Prusa MK3S 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -10,12 +10,6 @@
|
|||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Prusa MK3S 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -10,12 +10,6 @@
|
|||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Prusa MK3S 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -6,9 +6,6 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "Bambu Support G @base",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle"
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -6,9 +6,6 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "Bambu Support W @base",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle"
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -10,9 +10,6 @@
|
|||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle"
|
||||
]
|
||||
|
|
|
@ -14,12 +14,6 @@
|
|||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Prusa MK3S 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -14,12 +14,6 @@
|
|||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Prusa MK3S 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -19,9 +19,6 @@
|
|||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle"
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -16,9 +16,6 @@
|
|||
"16"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle"
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -13,9 +13,6 @@
|
|||
"0.94"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle"
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -44,12 +44,6 @@
|
|||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Prusa MK3S 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -19,9 +19,6 @@
|
|||
"7"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle"
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -17,12 +17,6 @@
|
|||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Prusa MK3S 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -20,12 +20,6 @@
|
|||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Prusa MK3S 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -11,12 +11,6 @@
|
|||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Prusa MK3S 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -9,9 +9,6 @@
|
|||
"15"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle"
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -9,9 +9,6 @@
|
|||
"22"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle"
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,17 +0,0 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM003",
|
||||
"name": "Anycubic 4Max Pro 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Anycubic 4Max Pro",
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"270x0",
|
||||
"270x205",
|
||||
"0x205"
|
||||
],
|
||||
"printable_height": "200"
|
||||
}
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"type": "machine_model",
|
||||
"name": "Anycubic 4Max Pro",
|
||||
"model_id": "BL-P002",
|
||||
"url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json",
|
||||
"nozzle_diameter": "0.4",
|
||||
"machine_tech": "FFF",
|
||||
"family": "BBL-3DP",
|
||||
"bed_model": "",
|
||||
"bed_texture": "",
|
||||
"hotend_model": "bbl-3dp-hotend.stl",
|
||||
"default_materials": "Generic PLA;Bambu PLA Matte @BBL X1;Bambu PLA Basic @BBL X1;Bambu ABS @BBL X1C;Bambu PC @BBL X1C;Bambu Support W @BBL X1;Bambu TPU 95A @BBL X1;PolyTerra PLA @BBL X1;PolyLite PLA @BBL X1;"
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"type": "machine_model",
|
||||
"name": "Prusa MK3S",
|
||||
"model_id": "BL-P002",
|
||||
"url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json",
|
||||
"nozzle_diameter": "0.4",
|
||||
"machine_tech": "FFF",
|
||||
"family": "BBL-3DP",
|
||||
"bed_model": "mk3_bed.stl",
|
||||
"bed_texture": "mk3.svg",
|
||||
"hotend_model": "bbl-3dp-hotend.stl",
|
||||
"default_materials": "Generic PLA;Bambu PLA Matte @BBL X1;Bambu PLA Basic @BBL X1;Bambu ABS @BBL X1C;Bambu PC @BBL X1C;Bambu Support W @BBL X1;Bambu TPU 95A @BBL X1;PolyTerra PLA @BBL X1;PolyLite PLA @BBL X1;"
|
||||
}
|
|
@ -1,33 +0,0 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM003",
|
||||
"name": "Voron 0.1 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_bbl_3dp_001_common",
|
||||
"printer_model": "Voron 0.1",
|
||||
"default_filament_profile": [
|
||||
"Bambu PLA Basic @BBL X1"
|
||||
],
|
||||
"default_print_profile": "0.20mm Standard @Voron",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"bed_exclude_area": [
|
||||
"0x0"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"120x0",
|
||||
"120x120",
|
||||
"0x120"
|
||||
],
|
||||
"printable_height": "120",
|
||||
"machine_start_gcode": "PRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single]",
|
||||
"machine_end_gcode": "PRINT_END",
|
||||
"scan_first_layer": "0",
|
||||
"machine_load_filament_time": "17",
|
||||
"machine_unload_filament_time": "16",
|
||||
"nozzle_type": "hardened_steel",
|
||||
"auxiliary_fan": "0"
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"type": "machine_model",
|
||||
"name": "Voron 2.4 250",
|
||||
"model_id": "BL-P002",
|
||||
"url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json",
|
||||
"nozzle_diameter": "0.4",
|
||||
"machine_tech": "FFF",
|
||||
"family": "BBL-3DP",
|
||||
"bed_model": "",
|
||||
"bed_texture": "voron_textured.png",
|
||||
"hotend_model": "bbl-3dp-hotend.stl",
|
||||
"default_materials": "Generic PLA;Bambu PLA Matte @BBL X1;Bambu PLA Basic @BBL X1;Bambu ABS @BBL X1C;Bambu PC @BBL X1C;Bambu Support W @BBL X1;Bambu TPU 95A @BBL X1;PolyTerra PLA @BBL X1;PolyLite PLA @BBL X1;"
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"type": "machine_model",
|
||||
"name": "Voron 2.4 250",
|
||||
"model_id": "BL-P002",
|
||||
"url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json",
|
||||
"nozzle_diameter": "0.4",
|
||||
"machine_tech": "FFF",
|
||||
"family": "BBL-3DP",
|
||||
"bed_model": "",
|
||||
"bed_texture": "voron_textured.png",
|
||||
"hotend_model": "bbl-3dp-hotend.stl",
|
||||
"default_materials": "Generic PLA;Bambu PLA Matte @BBL X1;Bambu PLA Basic @BBL X1;Bambu ABS @BBL X1C;Bambu PC @BBL X1C;Bambu Support W @BBL X1;Bambu TPU 95A @BBL X1;PolyTerra PLA @BBL X1;PolyLite PLA @BBL X1;"
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"type": "machine_model",
|
||||
"name": "Voron 2.4 300",
|
||||
"model_id": "BL-P002",
|
||||
"url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json",
|
||||
"nozzle_diameter": "0.4",
|
||||
"machine_tech": "FFF",
|
||||
"family": "BBL-3DP",
|
||||
"bed_model": "",
|
||||
"bed_texture": "voron_textured.png",
|
||||
"hotend_model": "bbl-3dp-hotend.stl",
|
||||
"default_materials": "Generic PLA;Bambu PLA Matte @BBL X1;Bambu PLA Basic @BBL X1;Bambu ABS @BBL X1C;Bambu PC @BBL X1C;Bambu Support W @BBL X1;Bambu TPU 95A @BBL X1;PolyTerra PLA @BBL X1;PolyLite PLA @BBL X1;"
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"type": "machine_model",
|
||||
"name": "Voron 2.4 350",
|
||||
"model_id": "BL-P002",
|
||||
"url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json",
|
||||
"nozzle_diameter": "0.4",
|
||||
"machine_tech": "FFF",
|
||||
"family": "BBL-3DP",
|
||||
"bed_model": "",
|
||||
"bed_texture": "voron_textured.png",
|
||||
"hotend_model": "bbl-3dp-hotend.stl",
|
||||
"default_materials": "Generic PLA;Bambu PLA Matte @BBL X1;Bambu PLA Basic @BBL X1;Bambu ABS @BBL X1C;Bambu PC @BBL X1C;Bambu Support W @BBL X1;Bambu TPU 95A @BBL X1;PolyTerra PLA @BBL X1;PolyLite PLA @BBL X1;"
|
||||
}
|
|
@ -1,24 +0,0 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"name": "fdm_klipper_common",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_bbl_3dp_001_common",
|
||||
"default_filament_profile": [
|
||||
"Bambu PLA Basic @BBL X1C"
|
||||
],
|
||||
"default_print_profile": "0.20mm Standard @Voron",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"bed_exclude_area": [
|
||||
"0x0"
|
||||
],
|
||||
"machine_start_gcode": "PRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single]",
|
||||
"machine_end_gcode": "PRINT_END",
|
||||
"layer_change_gcode": "",
|
||||
"scan_first_layer": "0",
|
||||
"nozzle_type": "hardened_steel",
|
||||
"auxiliary_fan": "0"
|
||||
}
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP004",
|
||||
"name": "0.20mm Standard @A4MaxPro",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_process_bbl_0.20",
|
||||
"initial_layer_speed": "45",
|
||||
"initial_layer_infill_speed": "60",
|
||||
"outer_wall_speed": "50",
|
||||
"inner_wall_speed": "80",
|
||||
"sparse_infill_speed": "80",
|
||||
"internal_solid_infill_speed": "80",
|
||||
"top_surface_speed": "50",
|
||||
"gap_infill_speed": "40",
|
||||
"travel_speed": "200",
|
||||
"brim_type": "no_brim",
|
||||
"default_acceleration": "1900",
|
||||
"enable_prime_tower": "0",
|
||||
"enable_support": "0",
|
||||
"initial_layer_acceleration": "1900",
|
||||
"top_surface_acceleration": "1900",
|
||||
"compatible_printers": [
|
||||
"Anycubic 4Max Pro 0.4 nozzle"
|
||||
]
|
||||
}
|
|
@ -1,20 +0,0 @@
|
|||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP004",
|
||||
"name": "0.20mm Standard @MK3S",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_process_bbl_0.20",
|
||||
"initial_layer_speed": "20",
|
||||
"initial_layer_infill_speed": "25",
|
||||
"outer_wall_speed": "35",
|
||||
"inner_wall_speed": "60",
|
||||
"sparse_infill_speed": "200",
|
||||
"internal_solid_infill_speed": "200",
|
||||
"top_surface_speed": "50",
|
||||
"gap_infill_speed": "40",
|
||||
"travel_speed": "180",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 1.6 MiB |
110
resources/profiles/Prusa.json
Normal file
|
@ -0,0 +1,110 @@
|
|||
{
|
||||
"name": "Voron",
|
||||
"version": "01.01.01.02",
|
||||
"force_update": "0",
|
||||
"description": "Prusa configurations",
|
||||
"machine_model_list": [
|
||||
{
|
||||
"name": "Prusa MK3S",
|
||||
"sub_path": "machine/Prusa MK3S.json"
|
||||
}
|
||||
],
|
||||
"process_list": [
|
||||
{
|
||||
"name": "fdm_process_common",
|
||||
"sub_path": "process/fdm_process_common.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @MK3S",
|
||||
"sub_path": "process/0.20mm Standard @MK3S.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_tpu",
|
||||
"sub_path": "filament/fdm_filament_tpu.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_pet",
|
||||
"sub_path": "filament/fdm_filament_pet.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_abs",
|
||||
"sub_path": "filament/fdm_filament_abs.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_pc",
|
||||
"sub_path": "filament/fdm_filament_pc.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_asa",
|
||||
"sub_path": "filament/fdm_filament_asa.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_pva",
|
||||
"sub_path": "filament/fdm_filament_pva.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_pa",
|
||||
"sub_path": "filament/fdm_filament_pa.json"
|
||||
},
|
||||
{
|
||||
"name": "Prusa Generic PLA",
|
||||
"sub_path": "filament/Prusa Generic PLA.json"
|
||||
},
|
||||
{
|
||||
"name": "Prusa Generic PLA-CF",
|
||||
"sub_path": "filament/Prusa Generic PLA-CF.json"
|
||||
},
|
||||
{
|
||||
"name": "Prusa Generic PETG",
|
||||
"sub_path": "filament/Prusa Generic PETG.json"
|
||||
},
|
||||
{
|
||||
"name": "Prusa Generic ABS",
|
||||
"sub_path": "filament/Prusa Generic ABS.json"
|
||||
},
|
||||
{
|
||||
"name": "Prusa Generic TPU",
|
||||
"sub_path": "filament/Prusa Generic TPU.json"
|
||||
},
|
||||
{
|
||||
"name": "Prusa Generic ASA",
|
||||
"sub_path": "filament/Prusa Generic ASA.json"
|
||||
},
|
||||
{
|
||||
"name": "Prusa Generic PC",
|
||||
"sub_path": "filament/Prusa Generic PC.json"
|
||||
},
|
||||
{
|
||||
"name": "Prusa Generic PVA",
|
||||
"sub_path": "filament/Prusa Generic PVA.json"
|
||||
},
|
||||
{
|
||||
"name": "Prusa Generic PA",
|
||||
"sub_path": "filament/Prusa Generic PA.json"
|
||||
},
|
||||
{
|
||||
"name": "Prusa Generic PA-CF",
|
||||
"sub_path": "filament/Prusa Generic PA-CF.json"
|
||||
}
|
||||
],
|
||||
"machine_list": [
|
||||
{
|
||||
"name": "fdm_machine_common",
|
||||
"sub_path": "machine/fdm_machine_common.json"
|
||||
},
|
||||
{
|
||||
"name": "Prusa MK3S 0.4 nozzle",
|
||||
"sub_path": "machine/Prusa MK3S 0.4 nozzle.json"
|
||||
}
|
||||
]
|
||||
}
|
18
resources/profiles/Prusa/filament/Prusa Generic ABS.json
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFB99",
|
||||
"setting_id": "GFSB99",
|
||||
"name": "Prusa Generic ABS",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"filament_flow_ratio": [
|
||||
"0.926"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
}
|
18
resources/profiles/Prusa/filament/Prusa Generic ASA.json
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFB98",
|
||||
"setting_id": "GFSB98",
|
||||
"name": "Prusa Generic ASA",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_asa",
|
||||
"filament_flow_ratio": [
|
||||
"0.93"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
}
|
24
resources/profiles/Prusa/filament/Prusa Generic PA-CF.json
Normal file
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFN98",
|
||||
"setting_id": "GFSN99",
|
||||
"name": "Prusa Generic PA-CF",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pa",
|
||||
"filament_type": [
|
||||
"PA-CF"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"280"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"280"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
}
|
21
resources/profiles/Prusa/filament/Prusa Generic PA.json
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFN99",
|
||||
"setting_id": "GFSN98",
|
||||
"name": "Prusa Generic PA",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pa",
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"280"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"280"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
}
|
18
resources/profiles/Prusa/filament/Prusa Generic PC.json
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFC99",
|
||||
"setting_id": "GFSC99",
|
||||
"name": "Prusa Generic PC",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pc",
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.94"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
}
|
48
resources/profiles/Prusa/filament/Prusa Generic PETG.json
Normal file
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFG99",
|
||||
"setting_id": "GFSG99",
|
||||
"name": "Prusa Generic PETG",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pet",
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"90"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"90"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"10"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S180\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S255\n{endif};Prevent PETG from jamming"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
}
|
24
resources/profiles/Prusa/filament/Prusa Generic PLA-CF.json
Normal file
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFL98",
|
||||
"setting_id": "GFSL98",
|
||||
"name": "Prusa Generic PLA-CF",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA-CF"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"7"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
}
|
21
resources/profiles/Prusa/filament/Prusa Generic PLA.json
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFL99",
|
||||
"setting_id": "GFSL99",
|
||||
"name": "Prusa Generic PLA",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
}
|
24
resources/profiles/Prusa/filament/Prusa Generic PVA.json
Normal file
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFS99",
|
||||
"setting_id": "GFSS99",
|
||||
"name": "Prusa Generic PVA",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pva",
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"7"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
}
|
15
resources/profiles/Prusa/filament/Prusa Generic TPU.json
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFU99",
|
||||
"setting_id": "GFSR99",
|
||||
"name": "Prusa Generic TPU",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_tpu",
|
||||
"filament_max_volumetric_speed": [
|
||||
"3.2"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
}
|
82
resources/profiles/Prusa/filament/fdm_filament_abs.json
Normal file
|
@ -0,0 +1,82 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "fdm_filament_abs",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_common",
|
||||
"cool_plate_temp" : [
|
||||
"105"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"105"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"105"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"105"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"105"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"105"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"28.6"
|
||||
],
|
||||
"filament_type": [
|
||||
"ABS"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.04"
|
||||
],
|
||||
"filament_cost": [
|
||||
"20"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"80"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"110"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"3"
|
||||
]
|
||||
}
|
82
resources/profiles/Prusa/filament/fdm_filament_asa.json
Normal file
|
@ -0,0 +1,82 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "fdm_filament_asa",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_common",
|
||||
"cool_plate_temp" : [
|
||||
"105"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"105"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"105"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"105"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"105"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"105"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"35"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"28.6"
|
||||
],
|
||||
"filament_type": [
|
||||
"ASA"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.04"
|
||||
],
|
||||
"filament_cost": [
|
||||
"20"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"80"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"110"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"3"
|
||||
]
|
||||
}
|
135
resources/profiles/Prusa/filament/fdm_filament_common.json
Normal file
|
@ -0,0 +1,135 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "fdm_filament_common",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"cool_plate_temp" : [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"95%"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n;M106 P3 S0\n"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"1"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"60"
|
||||
],
|
||||
"filament_cost": [
|
||||
"0"
|
||||
],
|
||||
"filament_density": [
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
""
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Generic"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"200"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"35"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; Filament gcode\n"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"200"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"100"
|
||||
]
|
||||
}
|
79
resources/profiles/Prusa/filament/fdm_filament_pa.json
Normal file
|
@ -0,0 +1,79 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "fdm_filament_pa",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_common",
|
||||
"cool_plate_temp" : [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"100"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"100"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"4"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"8"
|
||||
],
|
||||
"filament_type": [
|
||||
"PA"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.04"
|
||||
],
|
||||
"filament_cost": [
|
||||
"20"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"290"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"0"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"30"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"290"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"108"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"300"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
]
|
||||
}
|
82
resources/profiles/Prusa/filament/fdm_filament_pc.json
Normal file
|
@ -0,0 +1,82 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "fdm_filament_pc",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_common",
|
||||
"cool_plate_temp" : [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"110"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"110"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"110"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"110"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"23.2"
|
||||
],
|
||||
"filament_type": [
|
||||
"PC"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.04"
|
||||
],
|
||||
"filament_cost": [
|
||||
"20"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"60"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"280"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"140"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"280"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
]
|
||||
}
|
76
resources/profiles/Prusa/filament/fdm_filament_pet.json
Normal file
|
@ -0,0 +1,76 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "fdm_filament_pet",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_common",
|
||||
"cool_plate_temp" : [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"0"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"80"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"0"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"80"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"20"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_type": [
|
||||
"PETG"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.27"
|
||||
],
|
||||
"filament_cost": [
|
||||
"30"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"255"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"255"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"80"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"220"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"260"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S180\n{elsif (bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S255\n{endif};Prevent PLA from jamming"
|
||||
]
|
||||
}
|
88
resources/profiles/Prusa/filament/fdm_filament_pla.json
Normal file
|
@ -0,0 +1,88 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_common",
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.24"
|
||||
],
|
||||
"filament_cost": [
|
||||
"20"
|
||||
],
|
||||
"cool_plate_temp" : [
|
||||
"35"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"0"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"45"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"35"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"0"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"45"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"220"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"50%"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"220"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"60"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{elsif (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{endif};Prevent PLA from jamming"
|
||||
]
|
||||
}
|
94
resources/profiles/Prusa/filament/fdm_filament_pva.json
Normal file
|
@ -0,0 +1,94 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "fdm_filament_pva",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_common",
|
||||
"cool_plate_temp" : [
|
||||
"35"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"0"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"45"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"35"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"0"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"45"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"15"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"1"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"1"
|
||||
],
|
||||
"filament_type": [
|
||||
"PVA"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.24"
|
||||
],
|
||||
"filament_cost": [
|
||||
"20"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"220"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"50%"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"220"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"250"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"50"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S180\n{elsif (bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S255\n{endif};Prevent PLA from jamming"
|
||||
]
|
||||
}
|
82
resources/profiles/Prusa/filament/fdm_filament_tpu.json
Normal file
|
@ -0,0 +1,82 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "fdm_filament_tpu",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_common",
|
||||
"cool_plate_temp" : [
|
||||
"30"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"30"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"35"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"30"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"30"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"35"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"15"
|
||||
],
|
||||
"filament_type": [
|
||||
"TPU"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.24"
|
||||
],
|
||||
"filament_cost": [
|
||||
"20"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"240"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"240"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"60"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"200"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"250"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder]>30)}M106 P3 S255\n{endif};Prevent TPU from jamming"
|
||||
]
|
||||
}
|
|
@ -4,10 +4,10 @@
|
|||
"name": "Prusa MK3S 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_bbl_3dp_001_common",
|
||||
"inherits": "fdm_machine_common",
|
||||
"printer_model": "Prusa MK3S",
|
||||
"default_filament_profile": [
|
||||
"Bambu PLA Basic @BBL X1"
|
||||
"Prusa Generic PLA"
|
||||
],
|
||||
"default_print_profile": "0.20mm Standard @MK3S",
|
||||
"nozzle_diameter": [
|
12
resources/profiles/Prusa/machine/Prusa MK3S.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "machine_model",
|
||||
"name": "Prusa MK3S",
|
||||
"model_id": "MK3S",
|
||||
"nozzle_diameter": "0.4",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Prusa",
|
||||
"bed_model": "mk3_bed.stl",
|
||||
"bed_texture": "mk3.svg",
|
||||
"hotend_model": "bbl-3dp-hotend.stl",
|
||||
"default_materials": "Prusa Generic ABS;Prusa Generic PLA;Prusa Generic PLA-CF;Prusa Generic PETG;Prusa Generic TPU;Prusa Generic ASA;Prusa Generic PC;Prusa Generic PVA;Prusa Generic PA;Prusa Generic PA-CF"
|
||||
}
|
137
resources/profiles/Prusa/machine/fdm_machine_common.json
Normal file
|
@ -0,0 +1,137 @@
|
|||
{
|
||||
"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": "250",
|
||||
"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": "",
|
||||
"layer_change_gcode": "",
|
||||
"machine_pause_gcode": "M400 U1\n",
|
||||
"wipe": [
|
||||
"1"
|
||||
]
|
||||
}
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
20
resources/profiles/Prusa/process/0.20mm Standard @MK3S.json
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"type": "process",
|
||||
"setting_id": "MK3S-2",
|
||||
"name": "0.20mm Standard @MK3S",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_process_common",
|
||||
"initial_layer_speed": "20",
|
||||
"initial_layer_infill_speed": "25",
|
||||
"outer_wall_speed": "35",
|
||||
"inner_wall_speed": "60",
|
||||
"sparse_infill_speed": "200",
|
||||
"internal_solid_infill_speed": "200",
|
||||
"top_surface_speed": "50",
|
||||
"gap_infill_speed": "40",
|
||||
"travel_speed": "180",
|
||||
"compatible_printers": [
|
||||
"Prusa MK3S 0.4 nozzle"
|
||||
]
|
||||
}
|
102
resources/profiles/Prusa/process/fdm_process_common.json
Normal file
|
@ -0,0 +1,102 @@
|
|||
{
|
||||
"type": "process",
|
||||
"name": "fdm_process_common",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"adaptive_layer_height": "0",
|
||||
"reduce_crossing_wall": "0",
|
||||
"max_travel_detour_distance": "0",
|
||||
"bottom_surface_pattern": "monotonic",
|
||||
"bottom_shell_thickness": "0",
|
||||
"bridge_speed": "50",
|
||||
"brim_width": "5",
|
||||
"brim_object_gap": "0.1",
|
||||
"compatible_printers": [],
|
||||
"compatible_printers_condition": "",
|
||||
"print_sequence": "by layer",
|
||||
"default_acceleration": "1000",
|
||||
"initial_layer_acceleration": "500",
|
||||
"top_surface_acceleration": "800",
|
||||
"bridge_no_support": "0",
|
||||
"draft_shield": "disabled",
|
||||
"elefant_foot_compensation": "0",
|
||||
"enable_arc_fitting": "1",
|
||||
"outer_wall_line_width": "0.4",
|
||||
"wall_infill_order": "inner wall/outer wall/infill",
|
||||
"line_width": "0.4",
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
"infill_wall_overlap": "25%",
|
||||
"interface_shells": "0",
|
||||
"ironing_flow": "10%",
|
||||
"ironing_spacing": "0.15",
|
||||
"ironing_speed": "30",
|
||||
"ironing_type": "no ironing",
|
||||
"reduce_infill_retraction": "1",
|
||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
|
||||
"detect_overhang_wall": "1",
|
||||
"overhang_1_4_speed": "0",
|
||||
"overhang_2_4_speed": "50",
|
||||
"overhang_3_4_speed": "30",
|
||||
"overhang_4_4_speed": "10",
|
||||
"inner_wall_line_width": "0.45",
|
||||
"wall_loops": "2",
|
||||
"print_settings_id": "",
|
||||
"raft_layers": "0",
|
||||
"seam_position": "aligned",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
"minimum_sparse_infill_area": "15",
|
||||
"internal_solid_infill_line_width": "0.4",
|
||||
"spiral_mode": "0",
|
||||
"standby_temperature_delta": "-5",
|
||||
"enable_support": "0",
|
||||
"resolution": "0.012",
|
||||
"support_type": "normal(auto)",
|
||||
"support_on_build_plate_only": "0",
|
||||
"support_top_z_distance": "0.2",
|
||||
"support_filament": "0",
|
||||
"support_line_width": "0.4",
|
||||
"support_interface_loop_pattern": "0",
|
||||
"support_interface_filament": "0",
|
||||
"support_interface_top_layers": "2",
|
||||
"support_interface_bottom_layers": "2",
|
||||
"support_interface_spacing": "0.5",
|
||||
"support_interface_speed": "80",
|
||||
"support_base_pattern": "rectilinear",
|
||||
"support_base_pattern_spacing": "2.5",
|
||||
"support_speed": "150",
|
||||
"support_threshold_angle": "30",
|
||||
"support_object_xy_distance": "0.35",
|
||||
"tree_support_branch_angle": "30",
|
||||
"tree_support_wall_count": "0",
|
||||
"tree_support_with_infill": "0",
|
||||
"detect_thin_wall": "0",
|
||||
"top_surface_pattern": "monotonicline",
|
||||
"top_surface_line_width": "0.4",
|
||||
"top_shell_thickness": "0.8",
|
||||
"enable_prime_tower": "1",
|
||||
"wipe_tower_no_sparse_layers": "0",
|
||||
"prime_tower_width": "35",
|
||||
"xy_hole_compensation": "0",
|
||||
"xy_contour_compensation": "0",
|
||||
"layer_height": "0.2",
|
||||
"bottom_shell_layers": "3",
|
||||
"top_shell_layers": "4",
|
||||
"bridge_flow": "1",
|
||||
"initial_layer_speed": "45",
|
||||
"initial_layer_infill_speed": "45",
|
||||
"outer_wall_speed": "45",
|
||||
"inner_wall_speed": "80",
|
||||
"sparse_infill_speed": "150",
|
||||
"internal_solid_infill_speed": "150",
|
||||
"top_surface_speed": "50",
|
||||
"gap_infill_speed": "30",
|
||||
"travel_speed": "200"
|
||||
}
|
186
resources/profiles/Voron.json
Normal file
|
@ -0,0 +1,186 @@
|
|||
{
|
||||
"name": "Voron",
|
||||
"version": "01.01.01.02",
|
||||
"force_update": "0",
|
||||
"description": "Voron configurations",
|
||||
"machine_model_list": [
|
||||
{
|
||||
"name": "Voron 2.4 250",
|
||||
"sub_path": "machine/Voron 2.4 250.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 2.4 300",
|
||||
"sub_path": "machine/Voron 2.4 300.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 2.4 350",
|
||||
"sub_path": "machine/Voron 2.4 350.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 250",
|
||||
"sub_path": "machine/Voron Trident 250.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 300",
|
||||
"sub_path": "machine/Voron Trident 300.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 350",
|
||||
"sub_path": "machine/Voron Trident 350.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 0.1",
|
||||
"sub_path": "machine/Voron 0.1.json"
|
||||
}
|
||||
],
|
||||
"process_list": [
|
||||
{
|
||||
"name": "fdm_process_common",
|
||||
"sub_path": "process/fdm_process_common.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_voron_common",
|
||||
"sub_path": "process/fdm_process_voron_common.json"
|
||||
},
|
||||
{
|
||||
"name": "0.08mm Extra Fine @Voron",
|
||||
"sub_path": "process/0.08mm Extra Fine @Voron.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Fine @Voron",
|
||||
"sub_path": "process/0.12mm Fine @Voron.json"
|
||||
},
|
||||
{
|
||||
"name": "0.15mm Optimal @Voron",
|
||||
"sub_path": "process/0.15mm Optimal @Voron.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Voron",
|
||||
"sub_path": "process/0.20mm Standard @Voron.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Voron",
|
||||
"sub_path": "process/0.24mm Draft @Voron.json"
|
||||
},
|
||||
{
|
||||
"name": "0.28mm Extra Draft @Voron",
|
||||
"sub_path": "process/0.28mm Extra Draft @Voron.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_tpu",
|
||||
"sub_path": "filament/fdm_filament_tpu.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_pet",
|
||||
"sub_path": "filament/fdm_filament_pet.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_abs",
|
||||
"sub_path": "filament/fdm_filament_abs.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_pc",
|
||||
"sub_path": "filament/fdm_filament_pc.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_asa",
|
||||
"sub_path": "filament/fdm_filament_asa.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_pva",
|
||||
"sub_path": "filament/fdm_filament_pva.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_pa",
|
||||
"sub_path": "filament/fdm_filament_pa.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Generic PLA",
|
||||
"sub_path": "filament/Voron Generic PLA.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Generic PLA-CF",
|
||||
"sub_path": "filament/Voron Generic PLA-CF.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Generic PETG",
|
||||
"sub_path": "filament/Voron Generic PETG.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Generic ABS",
|
||||
"sub_path": "filament/Voron Generic ABS.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Generic TPU",
|
||||
"sub_path": "filament/Voron Generic TPU.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Generic ASA",
|
||||
"sub_path": "filament/Voron Generic ASA.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Generic PC",
|
||||
"sub_path": "filament/Voron Generic PC.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Generic PVA",
|
||||
"sub_path": "filament/Voron Generic PVA.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Generic PA",
|
||||
"sub_path": "filament/Voron Generic PA.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Generic PA-CF",
|
||||
"sub_path": "filament/Voron Generic PA-CF.json"
|
||||
}
|
||||
],
|
||||
"machine_list": [
|
||||
{
|
||||
"name": "fdm_machine_common",
|
||||
"sub_path": "machine/fdm_machine_common.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_klipper_common",
|
||||
"sub_path": "machine/fdm_klipper_common.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 2.4 250 0.4 nozzle",
|
||||
"sub_path": "machine/Voron 2.4 250 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 2.4 300 0.4 nozzle",
|
||||
"sub_path": "machine/Voron 2.4 300 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 2.4 350 0.4 nozzle",
|
||||
"sub_path": "machine/Voron 2.4 350 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 250 0.4 nozzle",
|
||||
"sub_path": "machine/Voron Trident 250 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 300 0.4 nozzle",
|
||||
"sub_path": "machine/Voron Trident 300 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 350 0.4 nozzle",
|
||||
"sub_path": "machine/Voron Trident 350 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 0.1 0.4 nozzle",
|
||||
"sub_path": "machine/Voron 0.1 0.4 nozzle.json"
|
||||
}
|
||||
]
|
||||
}
|
24
resources/profiles/Voron/filament/Voron Generic ABS.json
Normal file
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFB99",
|
||||
"setting_id": "GFSB99",
|
||||
"name": "Voron Generic ABS",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_abs",
|
||||
"filament_flow_ratio": [
|
||||
"0.926"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
]
|
||||
}
|
24
resources/profiles/Voron/filament/Voron Generic ASA.json
Normal file
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFB98",
|
||||
"setting_id": "GFSB98",
|
||||
"name": "Voron Generic ASA",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_asa",
|
||||
"filament_flow_ratio": [
|
||||
"0.93"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
]
|
||||
}
|
30
resources/profiles/Voron/filament/Voron Generic PA-CF.json
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFN98",
|
||||
"setting_id": "GFSN99",
|
||||
"name": "Voron Generic PA-CF",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pa",
|
||||
"filament_type": [
|
||||
"PA-CF"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"280"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"280"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
]
|
||||
}
|
27
resources/profiles/Voron/filament/Voron Generic PA.json
Normal file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFN99",
|
||||
"setting_id": "GFSN98",
|
||||
"name": "Voron Generic PA",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pa",
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"280"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"280"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
]
|
||||
}
|
24
resources/profiles/Voron/filament/Voron Generic PC.json
Normal file
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFC99",
|
||||
"setting_id": "GFSC99",
|
||||
"name": "Voron Generic PC",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pc",
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.94"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
]
|
||||
}
|
54
resources/profiles/Voron/filament/Voron Generic PETG.json
Normal file
|
@ -0,0 +1,54 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFG99",
|
||||
"setting_id": "GFSG99",
|
||||
"name": "Voron Generic PETG",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pet",
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"90"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"90"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"40"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"10"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S180\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S255\n{endif};Prevent PETG from jamming"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
]
|
||||
}
|
30
resources/profiles/Voron/filament/Voron Generic PLA-CF.json
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFL98",
|
||||
"setting_id": "GFSL98",
|
||||
"name": "Voron Generic PLA-CF",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA-CF"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"7"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
]
|
||||
}
|
27
resources/profiles/Voron/filament/Voron Generic PLA.json
Normal file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFL99",
|
||||
"setting_id": "GFSL99",
|
||||
"name": "Voron Generic PLA",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
]
|
||||
}
|
30
resources/profiles/Voron/filament/Voron Generic PVA.json
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFS99",
|
||||
"setting_id": "GFSS99",
|
||||
"name": "Voron Generic PVA",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pva",
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"7"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
]
|
||||
}
|
21
resources/profiles/Voron/filament/Voron Generic TPU.json
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFU99",
|
||||
"setting_id": "GFSR99",
|
||||
"name": "Voron Generic TPU",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_tpu",
|
||||
"filament_max_volumetric_speed": [
|
||||
"3.2"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
]
|
||||
}
|
82
resources/profiles/Voron/filament/fdm_filament_abs.json
Normal file
|
@ -0,0 +1,82 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "fdm_filament_abs",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_common",
|
||||
"cool_plate_temp" : [
|
||||
"105"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"105"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"105"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"105"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"105"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"105"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"28.6"
|
||||
],
|
||||
"filament_type": [
|
||||
"ABS"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.04"
|
||||
],
|
||||
"filament_cost": [
|
||||
"20"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"80"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"110"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"3"
|
||||
]
|
||||
}
|
82
resources/profiles/Voron/filament/fdm_filament_asa.json
Normal file
|
@ -0,0 +1,82 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "fdm_filament_asa",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_common",
|
||||
"cool_plate_temp" : [
|
||||
"105"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"105"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"105"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"105"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"105"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"105"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"35"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"28.6"
|
||||
],
|
||||
"filament_type": [
|
||||
"ASA"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.04"
|
||||
],
|
||||
"filament_cost": [
|
||||
"20"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"80"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"110"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"240"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"270"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"3"
|
||||
]
|
||||
}
|
135
resources/profiles/Voron/filament/fdm_filament_common.json
Normal file
|
@ -0,0 +1,135 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "fdm_filament_common",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"cool_plate_temp" : [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"60"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"95%"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n;M106 P3 S0\n"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"1"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"60"
|
||||
],
|
||||
"filament_cost": [
|
||||
"0"
|
||||
],
|
||||
"filament_density": [
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"nil"
|
||||
],
|
||||
"filament_diameter": [
|
||||
"1.75"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"0"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_when_changing_layer": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"nil"
|
||||
],
|
||||
"filament_z_hop": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retract_restart_extra": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"nil"
|
||||
],
|
||||
"filament_settings_id": [
|
||||
""
|
||||
],
|
||||
"filament_soluble": [
|
||||
"0"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Generic"
|
||||
],
|
||||
"filament_wipe": [
|
||||
"nil"
|
||||
],
|
||||
"filament_wipe_distance": [
|
||||
"nil"
|
||||
],
|
||||
"bed_type": [
|
||||
"Cool Plate"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"200"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"35"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; Filament gcode\n"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"200"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"100"
|
||||
]
|
||||
}
|
79
resources/profiles/Voron/filament/fdm_filament_pa.json
Normal file
|
@ -0,0 +1,79 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "fdm_filament_pa",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_common",
|
||||
"cool_plate_temp" : [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"100"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"100"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"4"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"8"
|
||||
],
|
||||
"filament_type": [
|
||||
"PA"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.04"
|
||||
],
|
||||
"filament_cost": [
|
||||
"20"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"290"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"0"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"30"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"290"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"108"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"270"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"300"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
]
|
||||
}
|
82
resources/profiles/Voron/filament/fdm_filament_pc.json
Normal file
|
@ -0,0 +1,82 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "fdm_filament_pc",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_common",
|
||||
"cool_plate_temp" : [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"110"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"110"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"110"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"110"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"23.2"
|
||||
],
|
||||
"filament_type": [
|
||||
"PC"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.04"
|
||||
],
|
||||
"filament_cost": [
|
||||
"20"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"10"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"25%"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"60"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"280"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"140"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"280"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"2"
|
||||
]
|
||||
}
|
76
resources/profiles/Voron/filament/fdm_filament_pet.json
Normal file
|
@ -0,0 +1,76 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "fdm_filament_pet",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_common",
|
||||
"cool_plate_temp" : [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"0"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"80"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"0"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"80"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"20"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_type": [
|
||||
"PETG"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.27"
|
||||
],
|
||||
"filament_cost": [
|
||||
"30"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"255"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"255"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"80"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"220"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"260"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S180\n{elsif (bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S255\n{endif};Prevent PLA from jamming"
|
||||
]
|
||||
}
|
88
resources/profiles/Voron/filament/fdm_filament_pla.json
Normal file
|
@ -0,0 +1,88 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_common",
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_type": [
|
||||
"PLA"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.24"
|
||||
],
|
||||
"filament_cost": [
|
||||
"20"
|
||||
],
|
||||
"cool_plate_temp" : [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"60"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"60"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"60"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"220"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"50%"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"220"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"60"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"230"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{elsif (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{endif};Prevent PLA from jamming"
|
||||
]
|
||||
}
|
94
resources/profiles/Voron/filament/fdm_filament_pva.json
Normal file
|
@ -0,0 +1,94 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "fdm_filament_pva",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_common",
|
||||
"cool_plate_temp" : [
|
||||
"35"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"0"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"45"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"35"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"0"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"45"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"15"
|
||||
],
|
||||
"filament_soluble": [
|
||||
"1"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"1"
|
||||
],
|
||||
"filament_type": [
|
||||
"PVA"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.24"
|
||||
],
|
||||
"filament_cost": [
|
||||
"20"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"220"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_threshold": [
|
||||
"50%"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"220"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"50"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"190"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"250"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"50"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"4"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S180\n{elsif (bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S255\n{endif};Prevent PLA from jamming"
|
||||
]
|
||||
}
|
82
resources/profiles/Voron/filament/fdm_filament_tpu.json
Normal file
|
@ -0,0 +1,82 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "fdm_filament_tpu",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_common",
|
||||
"cool_plate_temp" : [
|
||||
"30"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"30"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"35"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"30"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"30"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"35"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"15"
|
||||
],
|
||||
"filament_type": [
|
||||
"TPU"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.24"
|
||||
],
|
||||
"filament_cost": [
|
||||
"20"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"240"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"100"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"240"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"60"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"200"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"250"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder]>30)}M106 P3 S255\n{endif};Prevent TPU from jamming"
|
||||
]
|
||||
}
|
19
resources/profiles/Voron/machine/Voron 0.1 0.4 nozzle.json
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "VORON-001",
|
||||
"name": "Voron 0.1 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 0.1",
|
||||
"default_print_profile": "0.20mm Standard @Voron",
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"120x0",
|
||||
"120x120",
|
||||
"0x120"
|
||||
],
|
||||
"printable_height": "120",
|
||||
"nozzle_type": "hardened_steel",
|
||||
"auxiliary_fan": "0"
|
||||
}
|
12
resources/profiles/Voron/machine/Voron 0.1.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "machine_model",
|
||||
"name": "Voron 2.4 250",
|
||||
"model_id": "Voron0",
|
||||
"nozzle_diameter": "0.4",
|
||||
"machine_tech": "FFF",
|
||||
"family": "VoronDesign",
|
||||
"bed_model": "",
|
||||
"bed_texture": "voron_v0_logo.png",
|
||||
"hotend_model": "bbl-3dp-hotend.stl",
|
||||
"default_materials": "Voron Generic ABS;Voron Generic PLA;Voron Generic PLA-CF;Voron Generic PETG;Voron Generic TPU;Voron Generic ASA;Voron Generic PC;Voron Generic PVA;Voron Generic PA;Voron Generic PA-CF"
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM003",
|
||||
"setting_id": "VORON-002",
|
||||
"name": "Voron 2.4 250 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
12
resources/profiles/Voron/machine/Voron 2.4 250.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "machine_model",
|
||||
"name": "Voron 2.4 250",
|
||||
"model_id": "Voron2-250",
|
||||
"nozzle_diameter": "0.4",
|
||||
"machine_tech": "FFF",
|
||||
"family": "VoronDesign",
|
||||
"bed_model": "",
|
||||
"bed_texture": "voron_logo.png",
|
||||
"hotend_model": "bbl-3dp-hotend.stl",
|
||||
"default_materials": "Voron Generic ABS;Voron Generic PLA;Voron Generic PLA-CF;Voron Generic PETG;Voron Generic TPU;Voron Generic ASA;Voron Generic PC;Voron Generic PVA;Voron Generic PA;Voron Generic PA-CF"
|
||||
}
|