Re: Tool Setting Options For Routers and Mills
Posted: Sat Mar 16, 2019 4:49 pm
Dan,
As always, test things out. I didn't change anything in the m6.
As always, test things out. I didn't change anything in the m6.
Code: Select all
N225
M200 "#)Jog the cutter over the Moveable Plate on the Spoil Board \nPress Cycle Start to continue"
M115 /Z P[#104] F[#102] ;Move at fast probing rate until TT1 detected
G91 Z#9013 F[#102] ;Move up the distance set in P13.
M115 /Z P[#104]F[#103] ;Move at slow probing rate until TT1 detected
G90
G54 G92 Z[#9071] ;Set Z position to 0 + detector height stored in parameter 71 - Moveable plate thickness
G4 P1 ;Wait 1 second
G53 Z0 ;Retract Z
Code: Select all
N230
M200 "#)Jog the cutter over the Moveable Plate on Top of the Part \nPress Cycle Start to continue"
M115 /Z P[#104] F[#102] ;Move at fast probing rate until TT1 detected
G91 Z#9013 F[#102] ;Move up the distance set in P13.
M115 /Z P[#104]F[#103] ;Move at slow probing rate until TT1 detected
G55 G92 Z[#9071] ;Set Z position to 0 + detector height stored in parameter 71 - Moveable plate thickness
G4 P1 ;Wait 1 second
G53 Z0 ;Retract Z
M225 #106 "#)Put away Moveable Tough Plate\nThe machine will now move to the Fixed Tool Touch Off\nPress Cycle Start to continue"
G30P2 ;Move machine to return point to measure Z at TT1 permanent location
Where is your latest report?cbb1962 wrote: ↑Mon Mar 25, 2019 9:40 pm I have something weird going on with mfunc6_g54.mac.
When I choose option 1, I zero G54 to a moveable plate, no issues.When I set G55 (it is the basically the same code as the G54) it hangs at the G53 Z0. The bit will stay at the touch plate and not retract until I press cycle start, then it retracts to G53 Z0 and immediately moves to the G30 position.Code: Select all
N225 M200 "#)Jog the cutter over the Moveable Plate on the Spoil Board \nPress Cycle Start to continue" M115 /Z P[#104] F[#102] ;Move at fast probing rate until TT1 detected G91 Z#9013 F[#102] ;Move up the distance set in P13. M115 /Z P[#104]F[#103] ;Move at slow probing rate until TT1 detected G90 G54 G92 Z[#9071] ;Set Z position to 0 + detector height stored in parameter 71 - Moveable plate thickness G4 P1 ;Wait 1 second G53 Z0 ;Retract Z
This is not what it did in V4.12! it would retract to G53 Z0 then display the message. after I pressed cycle-start it would move to G30.Code: Select all
N230 M200 "#)Jog the cutter over the Moveable Plate on Top of the Part \nPress Cycle Start to continue" M115 /Z P[#104] F[#102] ;Move at fast probing rate until TT1 detected G91 Z#9013 F[#102] ;Move up the distance set in P13. M115 /Z P[#104]F[#103] ;Move at slow probing rate until TT1 detected G55 G92 Z[#9071] ;Set Z position to 0 + detector height stored in parameter 71 - Moveable plate thickness G4 P1 ;Wait 1 second G53 Z0 ;Retract Z M225 #106 "#)Put away Moveable Tough Plate\nThe machine will now move to the Fixed Tool Touch Off\nPress Cycle Start to continue" G30P2 ;Move machine to return point to measure Z at TT1 permanent location
This makes ZERO SENSE! What am I missing???