Hello Guest it is April 18, 2024, 04:13:56 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 - PoolQ

Pages: 1
1
LazyTurn / Re: LazyTurn
« on: February 28, 2008, 05:02:40 PM »
Don't forget about use router lathe users  :o that use the rotation axis as an indexer and can make cuts along the length

2
VB and the development of wizards / Re: How to attach VB script to button
« on: September 22, 2007, 05:15:59 PM »
okay, not sure why I cant do that in screen4, but it worked in screen3 and the code shows up in Mach3.

Dim Len, SD, FD, SR, FR, TD, ClearZ, I

SD = GetOEMDRO(1111)
SR = SD / 2
FD = GetOEMDRO(1112)
FR = FD / 2
TD = GetOEMDRO(1113)
Len = GetOEMDRO(1110)
ClearZ = SR + .1
Code "G18 G40 G49 G90 G94 G50 M48 G80"
Code "G0 Z" & ClearZ
Code "G0 X0"
Code "M3"
 for I = SR To FR Step -0.01
   Code "G1 Z" & I
   Code "G1 X" & Len - TD & "F6"
   Code "G0 Z" & ClearZ
   Code "G0 X0"
Next I

Code "G1 Z" & FR
Code "G1 X" & Len - TD
Code "G0 Z" & ClearZ
Code "G0 X0"
Code "M30"

however nothing goes into the code window on the screen, now what am I doing wrong?

3
VB and the development of wizards / Re: How to attach VB script to button
« on: September 22, 2007, 02:21:54 PM »
Well I must be doing something simple wrong. Everthing worls as described to attach code to a button, except that the button still contains "None" after the save. Did I save to the wrong location? I am using Mach Turn, where should the .m1s file be saved to?

Getting close but no cigars yet

4
General Mach Discussion / confusion abounds -Turn -DXF import
« on: September 13, 2007, 09:34:04 PM »
I have been truing to figure out how to import a DXF file into Mach3 for turn, without much luck So I decided to use one of the lazyCAD samples, outer profile and low and behold it does the same thing! crop circles. I assume that the outer profile is a valid example for turn? using the File-Import-DXF from the menu in Mach3. I have tried absolute and incremental modes and they show no difference in the display.

Am I doing something wrong? is there a tutorial or FAQ that explains the requirements for creating a profile in DXF format? I have written a custom VB program that directly outputs G-code and it works fine, now that I have somewhat learned G-code basics. I would sure like to use a CAD program for creating profiles.

5
General Mach Discussion / Re: Mach turn default screen
« on: September 11, 2007, 12:40:34 AM »
I found it on the other computer, missing on this one. its the 1024.lset

6
General Mach Discussion / Mach turn default screen
« on: September 10, 2007, 11:59:03 PM »
I loaded a mill screen in turn and now I cant find the default turn screen. Where is it and file name? or someway the get back to turn

7
G-Code, CAD, and CAM discussions / Crop circles
« on: September 10, 2007, 01:05:02 AM »
I am writing a program to generate some G code. I have Mach 3 and my desk machine and on a lathe (DIY). well I get to rev 4 and move the code to the lathe and I notice a mistep, but otherwise it looks fine. Rev five )below) looks fine on the desk top, but shows a large ball on the lathe display. nothing else has changed.
Anything anyone could point out would be great

G80
G01
G95
G0 X.036
M03
G3  X.09 Z1.8505 I-40.1655 k2.0879 F0.6
G0 Z2.1005
G1 X.0375
G0 X.0503 Z2.463
G1 Z2.713
G3  X.0115 Z4.827 I-71.7897 k2.7005 F0.6
G0 X1.2168
M30

Pages: 1