-
-
Notifications
You must be signed in to change notification settings - Fork 555
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
Candle_1.2.13b_x64. Z axis #542
Comments
Check movement speed, try lower or try not continuous but some distance step. Do you have set machine size corectly? And do you have set in settings Z+ Z- Y+ Y- X+ X- right position of your zero machine coordinates? I had similar issue one time when I had bad zero machine position, After changing from (example) X+ to X- joging started to work corectly. |
Thanks for your reply, yes all these matters are correct. it only happens in the "continuous movement" the Z axis travels up to the value declared in $132. And that only happens to me in this version of Candle. |
All the movements are correct, everything works, even when looking for the Zero point and this problem only happens after I memorize the zero point and then I want to move the cutter a little away from the table with the "continuous movement" |
What speed of movement do you use? I mean G0 speed. |
I think it would be easier if you just posted your whole |
Candle_1.2.13b_x64 version, and I only have this problem with this version, with 1.1.7 working without the slightest problem. |
That's Candle version. Grbl is the firmware that is running on your CNC machine. It's version should be printed in the Console when the machine starts. However, if your machine jogs fine with Candle 1.1.7, it must be running Grbl 1.1. That's all I needed to know. The full It seems like the jogging code was quite significantly rewritten between 1.1.7 and current |
Hi, Exact same issue for me. The problem is actually not related to the "Zero Z" action, but to the "Probe Z" action (we usually set Z axis to 0 after probing). As soon as I finish probing, next click on Arrows to move Z axis (with Continuous option) result in a infinite move (it actually climbs to 200 ;)). I had no issue with 1.1.7. |
Hello.
Because of unknown reason, "Jog" movement after probe becomes "Run" (can be discovered with With Candle 1.1 or 1.2 the issue can be reproduced this way:
I'll try to understand the reason of the issue in Grbl source code... |
[fix] After successful probe (G38.2 Z-20 F100) step control is blocked by STEP_CONTROL_END_MOTION flag. It blocks stepper prepare buffer and after jog action ($J=G91Z1F10) it is immediately turns to Idle and then to Run state. Although stepper actions are correct it is impossible to stop this jog action (see [Candle gnea#542](Denvi/Candle#542) ).
Although it seems grbl probe issue, consider a workaround: add micro movement after probe command: G91 G0 Z0.001; Z-0.001. So, modified default probe command will be: G21G91G38.2Z-30F100; G0Z1; G38.2Z-2F10; G0Z0.001; Z-0.001 |
Candle_1.2.13b_x64.
I click on the icon to look for the zero and then on the other icon to set the zero. then I click to go up the Z axis in the "Continuous movement" it doesn't stop and continues to go up by itself, any ideas?
The text was updated successfully, but these errors were encountered: