585,932 active members*
3,816 visitors online*
Register for free
Login

Search:

Type: Posts; User: JWK42

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    5,217

    Wolf I am going to cut & paste your program in...

    Wolf
    I am going to cut & paste your program in one ALL style file with % as the first and last line. I will change your program numbers to 11112,11113,11114 so they will be saved as different...
  2. Replies
    6
    Views
    5,217

    Wolf I sent the GW basic program to a friend...

    Wolf
    I sent the GW basic program to a friend who writes software and he thinks he can do something that works on the new Windows 7 or 8 PC's. If you would post a short version of one of your...
  3. Replies
    6
    Views
    5,217

    Wolf I wrote this program in GW basic to...

    Wolf
    I wrote this program in GW basic to separate the long "ALL" file into separate files. It's logic is to open the long ALL file and begin inputting lines of code. It checks each new line to...
  4. Replies
    4
    Views
    6,413

    Brian What control are you using to get the...

    Brian
    What control are you using to get the frigure 8 groove to work? We were never able to make it track while we were grooving bronze bushings with any control accept the AB 7365. We were able...
  5. Replies
    4
    Views
    6,413

    We did this years ago on a Jones & Lamson 312A...

    We did this years ago on a Jones & Lamson 312A with a AB 7365 control. We were never able to do it on the newer controls Cinncy, Warner Swasey, Hass or any of the various Okuma controls. The groove...
  6. Replies
    3
    Views
    1,259

    Don't use #500 series variables

    After reinstalling the renishaw software about 4 times we decided to change all our progams with #500 series variables to #600 series and have had no more problems. Thank goodness for "search &...
  7. Replies
    3
    Views
    1,186

    Regrind taper on Cat 40 tools

    We are trading our Haas HS1-RP for a Haas EC-400 with probe and full fourth axis. I am wondering if we can have the tapers on the Cat 40 tools off the HS1 reground. I know it would change the gage...
  8. Replies
    6
    Views
    2,150

    DP By golly you are right. We fixed it at the...

    DP

    By golly you are right. We fixed it at the machine but never in the office. It does work pretty well. I have never used it to mill a round hole. Would have to add a line to make a full...
  9. Replies
    6
    Views
    2,150

    Here is a macro I use to mill spiral face grooves...

    Here is a macro I use to mill spiral face grooves in out parts. Maybe you can adapt it to your needs




    %
    O5555 (SPIRAL GROOVE MACRO)
    N30 ( WRITTEN 09-07-2010 08:42:13 )
    N40 (MODIFIED...
  10. Thread: RECOVER PROGRAM

    by JWK42
    Replies
    2
    Views
    898

    While in CURNT COMDS Press LIST PROG Press the...

    While in CURNT COMDS
    Press LIST PROG
    Press the RIGHT ARROW to enter program in memory list
    Scroll thru list with UP or DOWN arrow
    Press SELECT PROG when the program you want is highlighted...
  11. Replies
    2
    Views
    1,426

    Some people say just use a NPT endmilll with the...

    Some people say just use a NPT endmilll with the right taper built in and mill just like a straight end mill. We have used this method for 20 years. Some people say you have to follow the taper...
  12. Replies
    10
    Views
    2,309

    On the Haas G53 is not tied to any other...

    On the Haas G53 is not tied to any other coordinate system. It is distance and direction from machine zero. The X numbers are in the range of zero to minus 40.0 on a 40 inch "X" machine and zero to...
  13. Replies
    10
    Views
    2,309

    N210 G1 Z-.05 N220 G0 Z.5 N230 M5 N240 G91 G28...

    N210 G1 Z-.05
    N220 G0 Z.5
    N230 M5
    N240 G91 G28 Z0.
    N250 G28 X0. Y0.
    N260 M30


    This is the way we do it.
  14. Thread: Macro Help

    by JWK42
    Replies
    4
    Views
    725

    Can you use GOTO to jump past the lines you want...

    Can you use GOTO to jump past the lines you want to block delete

    Ex. IF [ #501 LT 7 ] GOTO200;

    N200 would be the line to jump to
  15. Replies
    27
    Views
    2,637

    "G01 z-.050 D01 f4.0 (feed down .050) G01 x.3438...

    "G01 z-.050 D01 f4.0 (feed down .050)
    G01 x.3438 f4.0 (move over to edge of circle)
    G02 I.3438 J0.0 (circle clockwise)
    G01 x2.0 (clear part)"

    I think after a quick look you need to have a...
  16. Goto MDI mode and type in #100=2 hit cycle start...

    Goto MDI mode and type in #100=2
    hit cycle start and see if you get an error message about unknown code.
    I have checked with Google and can't find any examples of WINCNC code.
    The #100 series is...
  17. Ok!! I'm trying to wrap my head around this job....

    Ok!!
    I'm trying to wrap my head around this job. If you are making this sine wave pattern in a 4' x 8' sheet, that is a lot of material to remove with a .25 dia tool. You will be 2.0 in. deep from...
  18. How far from crest to crest? Are your waves...

    How far from crest to crest? Are your waves perfect radii from top of crown to the pitch diameter or mid point of the wave. You could use a ball end mill to cut the valleys and a corner rounding...
  19. Replies
    7
    Views
    1,217

    NEW EDIT on Friday 09-18-2009 Just found out...

    NEW EDIT on Friday 09-18-2009
    Just found out that you don't need to do a #599=#599+1. When you use P1 and (##) it counts by 1 for you. Press CURNT COMDS then PAGE DOWN 3 times to bring up the...
  20. Replies
    7
    Views
    1,217

    Check your operators / programming manual under...

    Check your operators / programming manual under G47. Mine is page 122. It explains it pretty well.
    The variable is stored under #599
    do #599=#599+1 between each part

    Check this out as well
    ...
  21. Thread: Thread Milling

    by JWK42
    Replies
    4
    Views
    1,048

    If you have macros here is an example of milling...

    If you have macros here is an example of milling the holes in a pattern.
    It uses G91 incremental to make the threading cuts and absolute to position to the next hole.
    I have only tested this on our...
  22. Thread: Thread Milling

    by JWK42
    Replies
    4
    Views
    1,048

    This is the way we program thread mill threads. ...

    This is the way we program thread mill threads. This is based on X0. Y0. being the center of the thread and is in absolute mode. You could use G52 to shift program zero and put the thread milling...
  23. Replies
    5
    Views
    1,085

    Pics of right angle head

    Here are some pics of the right angle head milling & c-boreing holes
  24. Replies
    5
    Views
    1,085

    Nope We used the program below to mill and...

    Nope

    We used the program below to mill and c-bore 3 holes on a flat bar with a right angle head
    mounted on our E C-1600 Haas Horizontal. We now have a VF-3 so we don't do this part on the...
  25. Replies
    5
    Views
    1,085

    Tool comp won't work in G18 or G19 depending on...

    Tool comp won't work in G18 or G19 depending on which axis your cutter is pointing to.
    We have a macro we use to mill G12 or G13 type round pockets with a right angle head. If you have macros...
  26. Replies
    12
    Views
    3,779

    Do you need the G97 to turn off "Constant Surface...

    Do you need the G97 to turn off "Constant Surface Speed " since it has not been turned on earlier in the program with a G96? This is how the top of our programs look.

    O2397 (TEST 123)
    N30...
  27. Thread: Chess Set

    by JWK42
    Replies
    3
    Views
    1,418

    Would the G-code programs written by someone else...

    Would the G-code programs written by someone else using Peter Smid's drawings be covered under Copy Right laws. Since I don't know the author of the G-code programs I will withdraw my offer to share...
  28. Thread: Chess Set

    by JWK42
    Replies
    7
    Views
    3,438

    Chess Set

    I got the drawings and code from a gentleman who teaches at a college in Kansas. The drawings are in Metric and say "Peter Smid CNC Programming" in one corner. I have lost his name & E-Mail address...
  29. Thread: Chess Set

    by JWK42
    Replies
    3
    Views
    1,418

    Chess Set

    I got the drawings and code from a gentleman who teaches at a college in Kansas. The drawings are in Metric and say "Peter Smid CNC Programming" in one corner. I have lost his name & E-Mail address...
  30. Replies
    19
    Views
    5,623

    I just ran these tests on our Haas simulator. ...

    I just ran these tests on our Haas simulator.
    (1)
    G17 G00 X0. Y0. Z0.
    G18
    G03 X10. Y10. Z0. I5. F10.
    G17

    or
    (2)
    G17 G00 X0. Y0. Z0.
Results 1 to 30 of 134
Page 1 of 5 1 2 3 4