Option to disable z and/or xy homing#22
Open
johnboiles wants to merge 5 commits intoStrooom:masterfrom
Open
Conversation
Contributor
Author
|
I also added the option to disable XY homing here Should I include that in this PR? |
Owner
|
Yes, looks usefull, I will merge it.
Thanks!
P
Op za 18 jan. 2020 om 20:45 schreef John Boiles <notifications@github.com>
I also added the option to disable XY homing here
<johnboiles@6a84cec>
Should I include that in this PR?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#22?email_source=notifications&email_token=AD5KOZICPPYVFO37DD3DMTLQ6NL5HA5CNFSM4I6HO7ZKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEJKAPUQ#issuecomment-575932370>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AD5KOZKA6HEM3FP2V2SYSSLQ6NL5HANCNFSM4I6HO7ZA>
.
--
Met vriendelijke groeten
Pascal Roobrouck
…------------------------------------------------------------------------------------------------
*Instructables <https://www.instructables.com/member/strooom/> | Hackster
<https://www.hackster.io/strooom>*
* | Github <https://github.com/Strooom> | Twitter
<https://twitter.com/strooom> *
|
8fc4bd3 to
2b016b2
Compare
Contributor
Author
|
Easy for me to just push it up here. I'll update the PR description. |
Option to disable xy homing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR provides an option to disable homing on the Z at the beginning and end of the generated GCode as well as an option to disable XY homing at the end of the generated GCode.
My machine (a MPCNC) doesn't have Z endstops -- so it's unable to position itself correctly with machine coordinates on the Z axis. That means the
G53 G0 Z-10at the beginning of the GCode and theG53 Z-10at the end of the GCode (whereproperties.machineHomeZ = -10) will cause the machine to go to a random Z height, sometimes causing a collision with the workpiece.Additionally, sometimes when making a cutting multiple small pieces, I don't want the machine to move away from the workpiece at the end of the GCode. In those cases, it's helpful to be able to disable XY homing as well.