Page 1 of 1

Jog step distance

PostPosted: Sat Jan 27, 2018 11:36 am
by shad
Hello!
Can we change the jog step distance for the distance buttons, for example now this is 0.001, 0.01, 0.1 or 1.00 Units.
Can we set 0.1,1,5,10 units?
Thank you!

Re: Jog step distance

PostPosted: Sat Jan 27, 2018 11:42 am
by dezsoe
Yes. You have to make your own buttons with macros to write new value to field 2027 (JogStepDistance). You also have to call AS3Jog.Validatefield(2027); after writing. You can also put it in your plugin and then you don't have to write macros.

Re: Jog step distance

PostPosted: Sat Jan 27, 2018 12:07 pm
by shad
Thank you Csaba!!

Re: Jog step distance

PostPosted: Wed Jan 31, 2018 10:02 am
by shad
Hello Csaba!
Please tell me, where I can set jog feedrate for jog in step mode? I am try to use #913 field, but not success.
Thank you!

Re: Jog step distance

PostPosted: Wed Jan 31, 2018 10:30 am
by dezsoe
Hi Andrew,
In step mode it uses the F feedrate, so you can set it with F command and the FRO.

Re: Jog step distance

PostPosted: Wed Jan 31, 2018 10:52 am
by shad
Yes, it's worked if I am after then UCCNC started load and start program.
But if I am not load and run program the value of speed is 6 mm / min.
Can I change this default value? I tried to write a new value in the field but without result. The jog speed still same.

Re: Jog step distance

PostPosted: Wed Jan 31, 2018 11:10 am
by dezsoe
You cannot change it directly, you must use exec.Code("F" + speed.ToString());. I could find it! :) Set feed rate on startup in a macroloop.

Re: Jog step distance

PostPosted: Wed Jan 31, 2018 11:25 am
by shad
Oh yes, I am find it.
:oops: