Page 1 of 2

default jog speed

PostPosted: Sun May 03, 2020 9:56 am
by voyager1972
is there a way to save the keyboard jog speed, when i start uccnc it is always at 10% ,i change it to a higher value and on a restart it is back at 10%

Re: default jog speed

PostPosted: Sun May 03, 2020 10:10 am
by cncdrive
Yes, you can do that in the constructor macro M99998.

Re: default jog speed

PostPosted: Sun May 03, 2020 12:34 pm
by Robertspark
Add this to the M99998.txt macro within your profile

Code: Select all
AS3.Setfield(60, 913);   // change the 60 to whatever % you want
AS3.Validatefield(913);
// field 913 is shown in the Fields by number.htm within the Documentation folder as
// Jogfeedrate

Re: default jog speed

PostPosted: Mon May 11, 2020 7:28 am
by Roby
Thank you Robertspark for the suggestion. Wondering if anybody been able to get this to work on version 2113. I added the code above to M99998.txt and the jog speed still defaults to 10%.

Thanks in advance,
Roby

Re: default jog speed

PostPosted: Mon May 11, 2020 8:29 am
by dezsoe
Sorry, Rob made a small mistake. Here is the working version:

Code: Select all
AS3jog.Setfield(60, 913);   // change the 60 to whatever % you want
AS3jog.Validatefield(913);
// field 913 is shown in the Fields by number.htm within the Documentation folder as
// Jogfeedrate

Re: default jog speed

PostPosted: Mon May 11, 2020 10:12 am
by Robertspark
oops... forgot it was on the jog screen..... AS3jog :oops:

Re: default jog speed

PostPosted: Mon May 11, 2020 9:24 pm
by Roby
This works a treat, thanks guys!

Re: default jog speed

PostPosted: Sat Jul 03, 2021 5:59 pm
by The-Meerkat
:D :D :D :D :D
This works great. Having to bump up the jog speed every time has been bugging me. I’ve been meaning to get around to changing the 99998 macro and finally did it this morning. Awesome little fix!

Re: default jog speed

PostPosted: Thu Aug 12, 2021 9:09 pm
by Owlwood
Worked for me too!
This has been bugging me for months!

Thanks Gents.

Re: default jog speed

PostPosted: Fri Aug 13, 2021 11:48 pm
by Owlwood
This worked great for me too

Thanks for sharing!