Hello Guest it is April 24, 2024, 12:17:05 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 - Kenneth

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 »
31
Mach Screens / Re: Probe
« on: February 04, 2019, 01:08:14 PM »
sorry, using Mach 3

32
Mach Screens / Re: Probe
« on: February 04, 2019, 12:50:07 PM »
64 bit
win 10 pro
24g ram
3.4g processor

33
Mach Screens / Probe
« on: February 04, 2019, 12:45:01 PM »
Below is a script i made with machscreen v1.7. but it tells me the the command is too long and points to the block(first line).
hope someone can help me. Thanks


'probe on Z axis 
Probe = 1.89  'probe height
Depth = -1.5   'z negative travel 
Feed = 4
Code "G20 G31 Z" & Depth & " F" & Feed
While IsMoving()
Wend
SetOEMDRO(802,Probe)
While IsMoving()
Wend
Code "G91 G00 Z.2"
While IsMoving()
Wend
Code "G90"
End
 
 

34
Share Your GCode / Re: Probe Script
« on: May 21, 2015, 07:13:09 AM »
Thanks Daniell and TPS. this is what i got and works !
didn't know about spaces. Thanks TPS

'probing = XY ID
'probe dia. = tapered till tip - - tip .104"
NegMove = -10
PosMove = 10
Feed = 6
Code "G31 F" & Feed & " X" & NegMove           'X axis
While IsMoving()
Wend
SetOEMDRO(800,0)
Code "G00 X.2"
While IsMoving()
Wend
Code "G31 F" & Feed & " X" & PosMove
While IsMoving()
Wend
Xdro = GetOEMDRO(800)
SetOEMDRO(800,Xdro/2)
While IsMoving()
Wend
Code "G00 X0"
While IsMoving()
Wend                                    
Code "G31 F" & Feed & " Y" & NegMove          'Y axis
While IsMoving()
Wend
SetOEMDRO(801,0)
Code "G00 Y.2"
While IsMoving()
Wend
Code "G31 F" & Feed & " Y" & PosMove
While IsMoving()
Wend
Ydro = GetOEMDRO(801)
SetOEMDRO(801,Ydro/2)
Code "G00 Y0"
End

35
Share Your GCode / Re: Probe Script
« on: May 21, 2015, 06:57:15 AM »
Thanks TPS.

but i tried the below and get script error.

Code "G31 F"&Feed & " X"&NegMove

36
Share Your GCode / Re: Probe Script
« on: May 21, 2015, 06:40:55 AM »
i understand. but to change your feed you'll have to go thru the script
and change each one. i understand that feed is modal and if i put
F6 at the top in would feed at 6 till it gets to G00 then ALL feeds will be G00
from there. "I" want to be able to change the feed in ONE place.
Is This Possible ?

Thanks

37
Share Your GCode / Re: Probe Script
« on: May 21, 2015, 06:24:59 AM »
i'm trying to change the feed at the top.
like ;
Feed = 6
then ;
Code "g31 F[Feed] X"&PosMove

that way i can change the feed in one area. is this possible ?

or even have two feeds
Feed1 = 6
Feed2 = 10

38
Share Your GCode / Re: Probe Script
« on: May 21, 2015, 06:12:41 AM »
Thanks daniell,
if i put that at the beginning, after it hit G00 the rest of the
script will be in G00 mode. and i'm already going 6imp.
Thanks again



those aren't feed moves, but axis moves

39
Share Your GCode / Probe Script
« on: May 21, 2015, 05:50:36 AM »
below is the code i use to probe IDs. i like to know how to
use feed move. i want to be able to change the feed at the top instead
throughout the script. is this possible ? i tried Ffeed, but it laughed at me.
Thanks for any help !

NegMove = -10
PosMove = 10
Feed = 6


'probing = XY ID
'probe dia. = tapered till tip - - tip .104"
NegMove = -10
PosMove = 10
Code "G91 G31 F6 X"&NegMove            'X axis
While IsMoving()
Wend
SetOEMDRO(800,0)
Code "G00 X.2"
While IsMoving()
Wend
Code "G31 F6 X"&PosMove
While IsMoving()
Wend
Xdro = GetOEMDRO(800)
SetOEMDRO(800,Xdro/2)
While IsMoving()
Wend
Code "G90 G00 X0"
While IsMoving()
Wend                                   
Code "G91 G31 F6 Y"&NegMove            'Y axis
While IsMoving()
Wend
SetOEMDRO(801,0)
Code "G00 Y.2"
While IsMoving()
Wend
Code "G31 F6 Y"&PosMove
While IsMoving()
Wend
Ydro = GetOEMDRO(801)
SetOEMDRO(801,Ydro/2)
Code "G90 G00 Y0"
End
 

40
General Mach Discussion / Re: plot not showing
« on: February 24, 2015, 10:05:11 AM »
another ...... question ? what's a sticky ?

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 »