Good day.
Finally my machine is running like a dream
Now I finally feel productive.
A few question on the pendant control.
-Is there a way to set the increments button to move a certain distance only? like 1/16"
-How to set a macro to zero all
-a macro to go to z zero
Are you using the 1x 10x and 100x buttons? Those change the jogging increments. You can click the wheel one click at a time to get finite movements, or the +/- buttons
To do these you would need to set the wizard 1-4 pendant buttons to “custom” and then code in your own macro. The code will only be a few lines, something like this:
M200 “Press Cycle Start to move to Z zero. Cycle Cancel to stop”
Z0 F50 ;this will move to Z zero at a rate of 50 IPM
to make a macro for zero all that would be like this:
M200 “Press Cycle Start to zero XY and Z”
G92 X0
G92 Y0
G92 Z0
Are you running our version of CNC12 or theirs? That screenshot is theirs…
If you are running ours in the Avid wizard you can set one of your pendant buttons to “CUSTOM” when you do, and you press the button you get a location of a text file you can edit.
If you put that code that I showed above into that text file it will do what you want
I am running Avid version…I was just wondering where that button is located if there is any…I do not want to mess things up when the machine is running good
Just duplicate your profile and try it out. When you duplicate it it’s a full an exact copy of your install. You can experiment with that one and fall back to your good one if you need
You can duplicate your profile in the Profile Manager (where you launch your profile)
Thanks, I think I got it now. The initial message wasn’t coming up for me when the pendant button was pushed because I had not reset and homed. I know, not a smart move. There is a place holder for each of the four buttons but only one macro defined, M200. Is that what is preventing you from defining a separate custom setting for each of the four buttons? Could you define additional macros like M300, M400, etc to enable custom settings for each of the four buttons?