Quote Originally Posted by Cube3 View Post
Hi,

When first starting UCCNC the jog speed is set to 10%. Can I change this and is there explanation of other default settings available?

Thanks Simon.
There is no way to do this from within UCCNC settings etc(that I know about), however, it can be done by writing the following code into what's called the Constructor macro M99998 which will you find in the Profiles folder inside a folder starting with Macro_(Same name as your profile) if you didn't name your profile then it will be in the Macro_Default folder.

AS3jog.Setfield(50, 913);

AS3jog.Validatefield(913);

You must copy it exactly as above as it's case-sensitive. To change the Jog speed to suit your needs replace the 50 with the value you want. Then restart UCCNC if it is running for it to take effect.