Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgrk3010 <59886923+grk3010@users.noreply.github.com>2020-05-14 23:05:27 +0300
committergrk3010 <59886923+grk3010@users.noreply.github.com>2020-05-14 23:05:27 +0300
commit3d412e53b72082517250f5c2debb5b44e6cd2ca9 (patch)
tree52a5430e04db0f77e7a99155f7deeaa3f6736ab9 /resources/definitions/smoothie.def.json
parent17c4bf7d6a84d4389dec5f486603eaae15464a5b (diff)
Make Smoothie definition Generic
Remove quality, extruder, and nozzle profiles to make the smoothie machine definition a generic custom configuration.
Diffstat (limited to 'resources/definitions/smoothie.def.json')
-rw-r--r--resources/definitions/smoothie.def.json38
1 files changed, 38 insertions, 0 deletions
diff --git a/resources/definitions/smoothie.def.json b/resources/definitions/smoothie.def.json
new file mode 100644
index 0000000000..5fce686161
--- /dev/null
+++ b/resources/definitions/smoothie.def.json
@@ -0,0 +1,38 @@
+{
+ "version": 2,
+ "name": "Smoothie Custom Printer",
+ "inherits": "fdmprinter",
+ "metadata": {
+ "visible": true,
+ "author": "grk3010",
+ "manufacturer": "Custom",
+ "category": "Custom",
+ "file_formats": "text/x-gcode",
+ "machine_extruder_trains":
+ {
+ "0": "custom_extruder_1",
+ "1": "custom_extruder_2",
+ "2": "custom_extruder_3",
+ "3": "custom_extruder_4",
+ "4": "custom_extruder_5",
+ "5": "custom_extruder_6",
+ "6": "custom_extruder_7",
+ "7": "custom_extruder_8"
+ },
+ "first_start_actions": ["MachineSettingsAction"]
+ },
+ "overrides": {
+ "machine_gcode_flavor": {
+ "default_value": "RepRap (Marlin/Sprinter)"
+ },
+ "machine_always_write_active_tool": {
+ "default_value": true
+ },
+ "machine_start_gcode": {
+ "default_value": "G28 X0 Y0 ; Home X Y\nM375; Load Bed Leveling Grid\nG1 X300 Y275 F15000 ; Move to bed center\nM280 S3.0 ; Deploy probe pin\n## NOTE: Adjust \"ZX.XX\" after G30 to be the Z-offset (in mm) between the probe and the nozzle\n## This is how you adjust nozzle printing height!\nG30 Z1.25 ; Move down to find bed & set Z home offset\nM280 S7.0 ; Retract probe\nG1 Z15.0 F600 ; move extruder up 15mm\nT0; Activate Extruder 1"
+ },
+ "machine_end_gcode": {
+ "default_value": "G28 X0 Y0; Home X and Y\nM104 S0 ; turn off extruder\nM140 S0 ; turn off bed\nM107; turn off fans\nM84 ; disable motors"
+ }
+ }
+}