Hello Guest it is April 18, 2024, 03:52:50 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 - 5ms

Pages: 1
1
VB and the development of wizards / Re: macros, Is this the way to do it?
« on: December 25, 2010, 05:25:46 AM »
moorea21, rrc1962 and Dan

Thank you for your replys and your time

2
VB and the development of wizards / Re: macros, Is this the way to do it?
« on: December 24, 2010, 05:35:38 PM »
You could use a subroutine right in your G-code.  I don't do it enough to write one from memory, but it's not difficult. 

something like:

test.nc
Sub run101()
While IsMoving()
  Sleep 10
Wend

   Code “G1 A2.5”
   Code “G1 A0”
   Code “G1 A1.7”
end sub

G01 X2 Y0 run101
G01 X9 run101
G01 X14 run101
G01 X15 Y5 run101
G01 X0  Y4 run101
G01 X1 run101


3
VB and the development of wizards / macros, Is this the way to do it?
« on: December 24, 2010, 02:22:26 PM »
Is this the way to do it?


test.nc
G01 X2 Y0 M101
G01 X9 M101
G01 X14 M101
G01 X15 Y5 M101
G01 X0  Y4 M101
G01 X1 M101
..............   So on..........

M101.m1s
While IsMoving()
  Sleep 10
Wend

   Code “G1 A2.5”
   Code “G1 A0”
   Code “G1 A1.7”
' 101 is dun

5ms

Pages: 1