Hello Guest it is March 29, 2024, 11:23:06 AM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - edgas10

Pages: 1
1
General Mach Discussion / Re: auto zero and touch plate
« on: September 19, 2009, 07:40:21 AM »
i´m a litle bit confused here !

we got 00,0000 in the dro so , the first two zeros are centimeters right?

2
General Mach Discussion / Re: auto zero and touch plate
« on: September 18, 2009, 04:25:19 AM »
hi thanks for the help but i dont know how to put this code working !
regards edgar

3
General Mach Discussion / Re: auto zero and touch plate
« on: September 17, 2009, 03:53:50 PM »
 
i i´ve downloaded the screen from greolt (touch.set) .
i´m using the auto zero buton that is right in the midle of the screen in the bottom.
i did the edit button  and :

CurrentFeed = GetOemDRO(818) 'Get the current feedrate to return to later
CurrentAbsInc = GetOemLED(48) 'Get the current G90/G91 state
CurrentGmode = GetOemDRO(819) 'Get the current G0/G1 state
PlateThickness = GetUserDRO(1151) 'Z-plate thickness DRO

If GetOemLed (825)=0 Then 'Check to see if the probe is already grounded or faulty

DoOEMButton (1010) 'zero the Z axis so the probe move will start from here

Code "G4 P2" ' this delay gives me time to get from computer to hold probe in place

Code "G90 G31 Z-20 F100" 'probing move, can set the feed rate here as well as how far to move

While IsMoving() 'wait while it happens

Wend

ZProbePos = GetVar(2002) 'get the axact point the probe was hit

Code "G0 Z" &ZProbePos 'go back to that point, always a very small amount of overrun

While IsMoving ()

Wend

Call SetDro (2, PlateThickness) 'set the Z axis DRO to whatever is set as plate thickness

Code "G4 P0.25" 'Pause for Dro to update.

Code "G1 Z20 F800" 'put the Z retract height you want here

While IsMoving ()

Wend

Code "(Z axis is now zeroed)" 'puts this message in the status bar

Code "F" &CurrentFeed 'Returns to prior feed rate

Else

Code "(Z-Plate is grounded, check connection and try again)" 'this goes in the status bar if aplicable

End If

If CurrentAbsInc = 0 Then 'if G91 was in effect before then return to it

Code "G91"

End If

If CurrentGMode = 0 Then 'if G0 was in effect before then return to it

Code "G0"

End If

Exit Sub 

thanks edgar

4
General Mach Discussion / Re: auto zero and touch plate
« on: September 16, 2009, 03:41:59 AM »
hi thanks for the aswer.
but  i don´t really know whats a scrip can you help me a litlle more ?
thanks

5
General Mach Discussion / auto zero and touch plate
« on: September 15, 2009, 06:04:40 PM »
hi im from portugal  and i have a few questions about this auto zero .
i´´ve already got the plate and its well conected to the software, but

wen i hit the auto zero button the z comes down touch the plate goes up ,stop and then goes up to the
top .

i use mm  can somebody help me with this?

how do i program  this feature ?

thanks Edgar

Pages: 1