UltiMaker uses functional, analytical and tracking cookies. Tracking cookies enhance your experience on our website and may also collect your personal data outside of Ultimaker websites. If you agree with the use of tracking cookies, click “I agree, continue browsing”. You can withdraw your consent at any time. If you do not consent with the use of tracking cookies, click “Refuse”. You can find more information about cookies on our Privacy and Cookie Policy page.
Posted
(edited)
· Octoprint mit Cura 2.3.1 und Ultimaker 2+
Hallo Sascha,
der UM2+ hat Varianten, Du müsstest mindestens noch die zugehörigen Dateien im Ordner "variants" kopieren (und darin den Verweis auf die neue "definition" abändern).
Außerdem gibt es im Ordner "quality" noch einen Unterordner mit zusätzlichen "quality_definition" für den UM2+ und den UM3. Wenn Du die nicht auch noch alle kopieren willst, kannst Du in der neuen Definition auf die Profile vom UM2+ verweisen.
In "ultimaker2_extended_plus.def.json" wird das z.B. so gemacht.
Im Übrigen denke ich, das Du vielleicht schneller am Ziel bist, wenn Du gleich die Definition vom Extended Plus kopierst. Das Vererben vom UM2 macht die Sache irgendwie zu kompliziert. Die paar Zeilen für GCode-Flavor und ggf. Start/End-Gcode kannst Du auch direkt dort rein schreiben. Das sieht dann so aus:
{ "id": "ultimaker2_plus_reprap", "version": 2, "name": "Ultimaker 2+ RepRap", "inherits": "ultimaker2_plus", "metadata": { "author": "Ultimaker", "manufacturer": "Ultimaker", "category": "Ultimaker", "quality_definition": "ultimaker2_plus", "weight": 1, "file_formats": "text/x-gcode", "platform": "ultimaker2_platform.obj", "platform_texture": "Ultimaker2Plusbackplate.png", "supported_actions":["UpgradeFirmware"] }, "overrides": { "machine_name": { "default_value": "Ultimaker 2+ RepRap" }, "machine_start_gcode" : { "default_value": "", "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \"G21 ;metric values\\nG90 ;absolute positioning\\nM82 ;set extruder to absolute mode\\nM107 ;start with the fan off\\nG28 Z0 ;move Z to bottom endstops\\nG28 X0 Y0 ;move X/Y to endstops\\nG1 X15 Y0 F4000 ;move X/Y to front of printer\\nG1 Z15.0 F9000 ;move the platform to 15mm\\nG92 E0 ;zero the extruded length\\nG1 F200 E10 ;extrude 10 mm of feed stock\\nG92 E0 ;zero the extruded length again\\nG1 F9000\\n;Put printing message on LCD screen\\nM117 Printing...\"" }, "machine_end_gcode" : { "default_value": "", "value": "\"\" if machine_gcode_flavor == \"UltiGCode\" else \"M104 S0 ;extruder heater off\\nM140 S0 ;heated bed heater off (if you have it)\\nG91 ;relative positioning\\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\\nG1 Z+0.5 E-5 X-20 Y-20 F9000 ;move Z up a bit and retract filament even more\\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\\nM84 ;steppers off\\nG90 ;absolute positioning\"" }, "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" } }}
Die 4 Varianten musst Du trotzdem noch duplizieren, aber das ist nicht viel Arbeit.
Edit Dec 5, 2016:
Wie es aussieht, werden die Varianten mit vererbt und das oben stehende "definition"-file reicht vollkommen aus.
(abspeichern im Cura-Programm Ordner als "..../Cura 2.3/resources/definitions/ultimaker2_plus_reprap.def.json")
Der Start- und End-gcode muss aber ggf. noch an die eigenen Vorlieben angepasst werden.
----
Wenn die Definition nicht ordentlich funktioniert, findet man meistens in der Log-Datei einen Hinweis auf die Ursache. In Cura: "Help->Show Configuration Folder" und dort die Datei "cura.log".
Da es aber (IMHO) keine Dokumentation gibt, wie diese ganzen json- und cfg-Dateien zusammen funktionieren sollen, bleibt vieles davon immer noch Kaffeesatz-Leserei...
...oder man muss Python lernen und versuchen, in den Cura Quelltexten die Zusammenhänge zu finden - je nachdem was schneller geht...
Viel Erfolg!
Edited by Guest
Link to post
Share on other sites
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
S-Line Firmware 8.3.0 was released Nov. 20th on the "Latest" firmware branch.
(Sorry, was out of office when this released)
This update is for...
All UltiMaker S series
New features
Temperature status. During print preparation, the temperatures of the print cores and build plate will be shown on the display. This gives a better indication of the progress and remaining wait time. Save log files in paused state. It is now possible to save the printer's log files to USB if the currently active print job is paused. Previously, the Dump logs to USB option was only enabled if the printer was in idle state. Confirm print removal via Digital Factory. If the printer is connected to the Digital Factory, it is now possible to confirm the removal of a previous print job via the Digital Factory interface. This is useful in situations where the build plate is clear, but the operator forgot to select Confirm removal on the printer’s display. Visit this page for more information about this feature.
A year after the merger of Ultimaker and MakerBotQQ, we have unlocked the ability for users of our Method series printers to slice files using UltiMaker Cura. As of this release, users can find profiles for our Method and Method XL printers, as well as material profiles for ABS-R, ABS-CF, and RapidRinse. Meaning it’s now possible to use either Cura or the existing cloud-slicing software CloudPrint when printing with these printers or materials
Recommended Posts
tinkergnome 926
Hallo Sascha,
der UM2+ hat Varianten, Du müsstest mindestens noch die zugehörigen Dateien im Ordner "variants" kopieren (und darin den Verweis auf die neue "definition" abändern).
Außerdem gibt es im Ordner "quality" noch einen Unterordner mit zusätzlichen "quality_definition" für den UM2+ und den UM3. Wenn Du die nicht auch noch alle kopieren willst, kannst Du in der neuen Definition auf die Profile vom UM2+ verweisen.
In "ultimaker2_extended_plus.def.json" wird das z.B. so gemacht.
Im Übrigen denke ich, das Du vielleicht schneller am Ziel bist, wenn Du gleich die Definition vom Extended Plus kopierst. Das Vererben vom UM2 macht die Sache irgendwie zu kompliziert. Die paar Zeilen für GCode-Flavor und ggf. Start/End-Gcode kannst Du auch direkt dort rein schreiben. Das sieht dann so aus:
Die 4 Varianten musst Du trotzdem noch duplizieren, aber das ist nicht viel Arbeit.
Edit Dec 5, 2016:
Wie es aussieht, werden die Varianten mit vererbt und das oben stehende "definition"-file reicht vollkommen aus.
(abspeichern im Cura-Programm Ordner als "..../Cura 2.3/resources/definitions/ultimaker2_plus_reprap.def.json")
Der Start- und End-gcode muss aber ggf. noch an die eigenen Vorlieben angepasst werden.
----
Wenn die Definition nicht ordentlich funktioniert, findet man meistens in der Log-Datei einen Hinweis auf die Ursache. In Cura: "Help->Show Configuration Folder" und dort die Datei "cura.log".
Da es aber (IMHO) keine Dokumentation gibt, wie diese ganzen json- und cfg-Dateien zusammen funktionieren sollen, bleibt vieles davon immer noch Kaffeesatz-Leserei...
...oder man muss Python lernen und versuchen, in den Cura Quelltexten die Zusammenhänge zu finden - je nachdem was schneller geht...
Viel Erfolg!
Edited by GuestLink to post
Share on other sites