-
-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ability to modify start and end g-code #741
Comments
Saving a bunch of extra gcode lines to app Preferences isn't hard. Putting them in the right spot for every user sounds like a challenge. How do you envision the interface? Please describe how you get to the editor that lets you make this change. Why is it better to do it in the app than, say, a text editor after exporting to gcode? Do you know of an app that already handles this well? Got a screenshot or video example? We can copy what they do. |
src/main/java/com/marginallyclever/makelangelo/makeart/io/SaveGCode.java#208 The only line that could easily be added to custom gcode is the home command. The color changes are considered steps in the path walked by the turtle. Makelangelo-software/src/main/java/com/marginallyclever/makelangelo/makeart/io/SaveGCode.java Lines 235 to 236 in 40e50e7
Maybe a new custom could be added between pen up and change color? Good chance it would break some of the unit tests. |
Yes, I realized that after I replied yesterday. I also though that going to 0.0 was part of the start sequence, but I'm realizing now that it was my drawing that started from the center. Honestly, the G28 after the custom G-code is the main thing that I'd like to change. And I'm realizing now that I can probably get around that by using XY_AFTER_HOMING in the Marlin firmware instead. Soooo... very low priority on this one? :) |
Well... I'm AFK from march 7-18. If someone does it before me? Cool. |
Also thank you for submitting such a great feature request with details and everything. |
7.57.1 committed just now lets you adjust the home gcode. leave it blank to do nothing. |
Describe the solution you'd like
It would be very useful to be able to modify the start and end g-code that Makelangelo software generates.
While we can add user g-code to the plotter settings, this is just added to the existing code; we can't modify what Makelangelo adds after.
For example, I'd like my plotter to first do a
G28
, then go to a specific point before asking to insert the pen. With the current state of things, even if I add all that in the start g-code, it will do aG28
all over again right after.The text was updated successfully, but these errors were encountered: