Page 1 of 2
default jog speed
Posted:
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
Posted:
Sun May 03, 2020 10:10 am
by cncdrive
Yes, you can do that in the constructor macro M99998.
Re: default jog speed
Posted:
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
Posted:
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
Posted:
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
Posted:
Mon May 11, 2020 10:12 am
by Robertspark
oops... forgot it was on the jog screen..... AS3jog
Re: default jog speed
Posted:
Mon May 11, 2020 9:24 pm
by Roby
This works a treat, thanks guys!
Re: default jog speed
Posted:
Sat Jul 03, 2021 5:59 pm
by The-Meerkat
Re: default jog speed
Posted:
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
Posted:
Fri Aug 13, 2021 11:48 pm
by Owlwood
This worked great for me too
Thanks for sharing!