What's new
What's new

Lock feedrate

civicske2

Aluminum
Joined
Nov 29, 2015
Hey
i manage to make a macro for a toolsetter to measure the toollengths and check broken tools.
But as i alredy do the fine touch in F100mm/min it stil have a big difference in measured length is the feedrate is set to 70 of 50%.
is there any way i can block for only this line the feedrate to 100mm/min. so my measure result isnt effected by the position of the feedrate knob?
 
What is the machine/control?

On a Fanuc, #3004=2 disables feedrate override, and #3003=0 enables it.

#3004=2

(measure stuff here)

#3003=0

M99
 
yes there is I don`t have the manuals here but its a G code is used when threading that stops overriding the feed rate,, I know its not only used on lathe controls but also on mill controls for tapping …
 
What is the machine/control?

On a Fanuc, #3004=2 disables feedrate override, and #3003=0 enables it.

#3004=2

(measure stuff here)

#3003=0

M99
Hello dandrummerman21,
Close, but no Cigar. #3003 is for Enabling/Disabling Single Block

#3004 is for Feed Hold, Feed Override and Exact Stop, Enable/Disable. There are 8 setting from 0 to 7 to initiate various combinations of the three functions.

To simply Disable Feed Override, #3004 is set to "2". To Enable Feed Override again, #3004 is set to "0". Accordingly, the program would look something like the following:

#3004=2

(measure stuff here)

#3004=0

Regards,

Bill
 
Last edited:
Hello dandrummerman21,
Close, but no Cigar. #3003 is for Enabling/Disabling Single Block

#3004 is for Feed Hold, Feed Override and Exact Stop, Enable/Disable. There are 8 setting from 0 to 7 to initiate various combinations of the three functions.

To simply Disable Feed Override, #3004 is set to "2". To Enable Feed Override again, #3004 is set to "0". Accordingly, the program would look something like the following:

#3004=2

(measure stuff here)

#3004=0

Regards,

Bill

I have a cheat sheet for stuff like this, apparently it was wrong (i didn't write it). I will correct my post.

Edit: cant edit posts a day later apparently.
 








 
Back
Top