Hello Guest it is April 19, 2024, 03:23:49 PM

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 - TPS

1981
General Mach Discussion / Re: MACH3PLASMA LIMIT SWITCHES FOR G540/PROMA
« on: February 28, 2018, 02:25:59 PM »
ok ihave run your code on my PP testmachine.

deleted N100 toolchange not necesary.

run it with THC on but no Inputs connected. everything was ok.

can you for a test disconnect the THC Up/dn Inputs , but physicaly disconnect them.



So leave THC on, and inputs active, but physically remove the inputs into my g540?

exactly

1982
General Mach Discussion / Re: MACH3PLASMA LIMIT SWITCHES FOR G540/PROMA
« on: February 28, 2018, 02:22:08 PM »
ok this code should work, and restore original feedrate

pierceHeight = 0.5 'enter here a value for wanted pierceheiht

   orgspeed=GetDro(18)    
   code "F30"
   code "G31 Z-1"
   While Ismoving()
   Wend

   code "G00 Z" & GetVar(2002) 'go back to the  probepoint
   While Ismoving()
   Wend

   code "G91 Z" & pierceHeight
   While Ismoving()
   Wend

   code "G92 Z0"
   While Ismoving()
   Wend

   Code "G90"
   Code "F" & orgspeed
   


Is this necessary? I have my my plunge rate in sheetcam set at 20ipm.


yes because you have a "variable" cuttin feedrate but probing feedrate should allways be the same.

1983
General Mach Discussion / Re: MACH3PLASMA LIMIT SWITCHES FOR G540/PROMA
« on: February 28, 2018, 02:20:16 PM »
ok ihave run your code on my PP testmachine.

deleted N100 toolchange not necesary.

run it with THC on but no Inputs connected. everything was ok.

can you for a test disconnect the THC Up/dn Inputs , but physicaly disconnect them.

 

1984
General Mach Discussion / Re: MACH3PLASMA LIMIT SWITCHES FOR G540/PROMA
« on: February 28, 2018, 02:01:54 PM »
ok this code should work, and restore original feedrate

pierceHeight = 0.5 'enter here a value for wanted pierceheiht

   orgspeed=GetDro(18)    
   code "F30"
   code "G31 Z-1"
   While Ismoving()
   Wend

   code "G00 Z" & GetVar(2002) 'go back to the  probepoint
   While Ismoving()
   Wend

   code "G91 Z" & pierceHeight
   While Ismoving()
   Wend

   code "G92 Z0"
   While Ismoving()
   Wend

   Code "G90"
   Code "F" & orgspeed
   

1985
General Mach Discussion / Re: MACH3PLASMA LIMIT SWITCHES FOR G540/PROMA
« on: February 28, 2018, 12:02:02 PM »
Really interesting, on my second pierce, when it goes to probe it changed my cutting speed From 130 ipm  to 30 ipm.?

ok my fault will give you new code soon

1986
General Mach Discussion / Re: MACH3PLASMA LIMIT SWITCHES FOR G540/PROMA
« on: February 28, 2018, 11:46:25 AM »
is Torch DN in dignosic Screen defenitiv off?

1987
General Mach Discussion / Re: MACH3PLASMA LIMIT SWITCHES FOR G540/PROMA
« on: February 28, 2018, 01:59:14 AM »
sorry should be

code "G91 Z" & pierceHeight

1988
General Mach Discussion / Re: MACH3PLASMA LIMIT SWITCHES FOR G540/PROMA
« on: February 27, 2018, 05:36:18 PM »
ok let's get back to the Basics,

open up vb scirper window

copy this code:

pierceHeight = 0.5 'enter here a value for wanted pierceheiht


   code "F30"
   code "G31 Z-1"
   While Ismoving()
   Wend

   code "G00 Z" & GetVar(2002) 'go back to the  probepoint
   While Ismoving()
   Wend

   code "G91 Z-" & pierceHeight
   While Ismoving()
   Wend

   code "G92 Z0"
   While Ismoving()
   Wend

   Code "G90"

and use the ||> green buton to se what's goinng on

1989
General Mach Discussion / Re: MACH3PLASMA LIMIT SWITCHES FOR G540/PROMA
« on: February 27, 2018, 02:41:09 PM »
ok, back again,

i think we can use your M3.m1s macro for the Job:

copy this code to macro before the dospinCW()


   
   pierceHeight = 0.5 'enter here a value for wanted pierceheiht


   code "F30"
   code "G31 Z-1"
   While Ismoving()
   Wend

   code "G00 Z" & GetVar(2002) 'go back to the  probepoint
   While Ismoving()
   Wend

   code "G91 Z-" & pierceHeight
   While Ismoving()
   Wend

   code "G92 Z0"
   While Ismoving()
   Wend

   Code "G90"


1990
VB and the development of wizards / Re: Tracing an object
« on: February 27, 2018, 01:02:12 AM »
Open "L:\test\TESTFILE.txt" For Append As #1 ' Open to write file.