Hello Guest it is April 16, 2024, 08:39:13 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 - Ya-Nvr-No

761
Share Your GCode / Re: Multi pass facing program
« on: April 03, 2012, 06:34:30 PM »
Thanks, nice to see a lathe routine. one of these days I will get my lathe build done and put your routine to use.

762
MACH TOOL BOX / Re: Multi pass facing program
« on: March 24, 2012, 12:32:00 PM »
Code: [Select]
O001
#100=-0.05(X Initial Home Start Point)
#101=-0.01(Y Initial Home Start Point)
#102=0.0  (Z Start Point)
#104=5.0  (X End Point)
#105=25   (Depth of Cut 25 *.002" = .05")
#106=15   (Number of Passes 15 * .02" *.02"= .6")
#107=0.002(Depth of Z cut)
#108=0.02 (Step over Y amount)

M3(Grinder Started)
G90
G0 Z0.1
X#100 Y#101(Go to the Initial Start Point)
Z#102
M98 P10 L#105
M5
M30

O10
#100=-0.01(X resets Home Start Point)
#101=0    (Y resets Home Start Point)
#102=0    (Z resets Home Start Point)
G0 X#100 Y#101
#102=[#102-#107]
G0 Z#102
M98 P20 L#106
M99

O20
#101=[#101-#108]
G1 Y#101 F90
X#104
#101=[#101-#108]
Y#101
X#100
M99
(Put comment here to make sure I have a carrage return on the last M99)

763
Share Your GCode / Re: Multi pass facing program
« on: March 24, 2012, 12:20:29 PM »
Some reason can not find the Mach Toolbox again; Seems like a simple search would helped me locate it, But to no avail.
(Update Found it: Machsupport Forum\ Support\ Downloads section)

Had to sharpen my lawnmower blades for a new season, so mounted a Dumore tool post grinder on my Z axis head, made a blade fixture holder, then wrote a small script to solve the task. Now I don't have to deal with the grief and they are always balanced. Uses a 3" diameter grinding wheel and does one sweet job, no burning and less mess. Though it does take longer than by hand I can get back to more fun safer things. Like napping.
Code: [Select]
O01
#100=-0.05(X Initial Home Start Point)
#101=-0.01(Y Initial Home Start Point)
#102=0.0  (Z Start Point)
#104=5.0  (X End Point)
#105=25   (Depth of Cut 25 *.002" = .05")
#106=15   (Number of Passes 15 * .02" *.02"= .6")
#107=0.002(Depth of Z cut)
#108=0.02 (Step over Y amount)

M3(Grinder Started)
G90
G0 Z0.1
X#100 Y#101(Go to the Initial Start Point)
Z#102
M98 P10 L#105
M5
M30

O10
#100=-0.01(X resets Home Start Point)
#101=0    (Y resets Home Start Point)
#102=0
G0 X#100 Y#101
#102=[#102-#107]
G0 Z#102
M98 P20 L#106
M99

O20
#101=[#101-#108]
G1 Y#101 F90
X#104
#101=[#101-#108]
Y#101
X#100
M99
(Put comment here to make sure I have a carriage return on the last M99)

764
General Mach Discussion / Re: kennametal .5" indexable mill cutter
« on: March 19, 2012, 11:04:10 PM »
http://www.hornusa.com/uploads/media/INFO9_11DE_DG_02.pdf

I did find these replaceable ends, not indexable. Ill look in the catalog tomorrow

765
General Mach Discussion / Re: kennametal .5" indexable mill cutter
« on: March 19, 2012, 10:39:47 PM »
check out DA milling system from http://www.hornusa.com/products/milling/
The PH Horn grooving tools are the best.

I found them to be much better tooling for me.

766
VB and the development of wizards / Re: THCon() ???
« on: March 19, 2012, 06:23:39 PM »
What is THCon ?
if i step through a simple check program

dim a as double
a=THCoff()
a=a
seems that i get a = 0

a=THCon
a=a
seems that i get a = 26
 
a=THCon()
compiler error

a=THCon(0)
unrecoverable error


767
FAQs / Re: which way is xy as i stand at my mill?
« on: March 19, 2012, 04:57:57 PM »
I like to think; Draw the CAD part with the 0,0 at the lower left corner and then place the material on the router or mill table with that in mind. I have mach3 .xml files that set my axis's either way.

Depends on the size parts I am cutting, the direction I programmed the repeated cuts (I do contour passes, 3d back and forth stepping over every pass). My cross slide seems to be faster, quieter, stronger and only uses one ball screw so I tend to use that as my X. But sometimes working on a very large piece I swap them and machine the other direction. I just think having the Lower left corner being Zero, Zero and Drawing to suit and then machine to suit keeps it simple (KISS)

As Terry states, make your own standards just learn to fully understand how to make it work for your needs.

768
VB and the development of wizards / Re: OemDro(98) ??
« on: March 01, 2012, 07:46:54 PM »
Only thing I see related to the FRO;s are in my case
223 Rapid FRO 0-100
821 Feed FRO 0-150

769
VB and the development of wizards / Re: OemDro(98) ??
« on: March 01, 2012, 05:16:38 PM »
As you can see it checks for any DRO or LED not equaling zero
I created the plugin for computing 5 axis tool nose position and then drive all the axis's to the position based on 4th and/or 5th axis head rotation, I just added the get data button to see current data values. It was a test in learning multi-axis matrix programming. Took me months to understand how to get it to work. I've found, I'm not that smart, but I manage to muck way thru it.  ;-)

770
I wrote a plugin that gave me all the DRO's, along with a few other things
I just have to find what they all referred too.