586,251 active members*
3,552 visitors online*
Register for free
Login

Search:

Type: Posts; User: Hardym1

Search: Search took 0.00 seconds.

  1. Replies
    9
    Views
    1,990

    Re: Program Tool Numbers Idea

    In your tool change program you could assign a variable to the tool in the spindle (I chose #148 but it can be what ever works best for your machine). Then for your all your “H's” it would be H#148....
  2. Replies
    9
    Views
    1,990

    Re: Program Tool Numbers Idea

    What control are you using?
  3. Replies
    8
    Views
    2,633

    Re: write protect in macro input

    If I understand correctly your just trying to name the variable, I am not familiar with the Fanuc Oi-TF control but I do know that in other Fanuc controls you can set your data like this:

    in MDI...
  4. Re: 18i- how can I set spindle tool number when toolchanger out of commission?

    .
  5. Replies
    15
    Views
    3,380

    Re: Issue with macro variable #3002

    This is now becoming unproductive. I do this everyday on my machines as does every other machinist that works here, I don't just read it in a manual.
  6. Replies
    15
    Views
    3,380

    Re: Issue with macro variable #3002

    Your right, #3002 is not the same as #500. #3002 is a system variable (you can not see this). #500 is the common variable where we store the data so we can see it.
  7. Replies
    15
    Views
    3,380

    Re: Issue with macro variable #3002

    There are 60 minutes in 1 hour which means that if you run your machine for 60 minutes then #500 would equal 1 (for 1hr), but anything less than 60 minutes is now equivalent to 1/3600 (the 3600 is...
  8. Replies
    15
    Views
    3,380

    Re: Issue with macro variable #3002

    For 15 minutes #500=.25
  9. Replies
    15
    Views
    3,380

    Re: Issue with macro variable #3002

    sinha_nsit,
    No disrespect intended but we do this all the time. Is something different with the 35i control?
  10. Replies
    15
    Views
    3,380

    Re: Issue with macro variable #3002

    Have you tried using something like this:

    #500=[#3002*60]
  11. Replies
    17
    Views
    3,236

    Re: 31i macro argument issues

    I sent you a PM. Let me know if it will work for you
  12. Replies
    17
    Views
    3,236

    Re: 31i macro argument issues

    sinha,

    0 is a number. It is not null. #0 will make it null.
  13. Replies
    17
    Views
    3,236

    Re: 31i macro argument issues

    At the beginning try adding #142=#0 after your #120 to clear out any number that might be in #142

    O9510(TEST ARGUMENT)

    #120=42

    #142=#0

    IF[#120EQ0042]THEN#142=12.5
    IF[#142GT0]GOTO300
  14. Re: Thread milling issue. Machine pauses at end of every circle/loop.

    sinha_nsit,
    No there was no pause when M99 placed in a seperate block, only when EOB was after the program #. I had the same issue years ago and remembered that it had something to do with where the...
  15. Re: Thread milling issue. Machine pauses at end of every circle/loop.

    ezzywave,

    Glad samu idea worked out but I just remembered that it should look like this:

    M98P0001(whatever your sub program #)L25

    Sub program is:
    O0001G91 G02 X0 Y0 I1 J0 W.125 M99;

    NO...
  16. Re: Thread milling issue. Machine pauses at end of every circle/loop.

    ezzywave

    The reason that it pauses is because of where your EOB is.

    Try this:
    N10 G91 G02 X0 Y0 I1 J0 W.125 M99;
  17. Replies
    5
    Views
    1,513

    Re: do while loops in series

    Not exactly sure what your trying to accomplish but it sounds like you would be better off using an IF/GOTO statement. Something like:

    IF[#101EQ1]GOTO100
    IF[#101EQ2]GOTO200

    N100;
    X0;
    Y100;...
  18. Re: Adjusting rapids in program for drilling cycle.

    MudNation
    Be careful if/when you change your parameters because the values are machine specific.

    Mactec54
    Your statement was “A G10 has nothing to do with Rapids or Feed Rate, it is only used...
  19. Re: Adjusting rapids in program for drilling cycle.

    As others have said change any G0 moves to a G1 with a Feed number of how fast you want to move

    It would be best if you posted your program, you usually control a G83 with a F--. you may be...
  20. Re: Adjusting rapids in program for drilling cycle.

    You might be able to G10 the parameter. What control do you have?
  21. Replies
    3
    Views
    2,110

    Re: heidenhain interpolated radius in X Y & Z

    Or you could use cycle 208
Results 1 to 21 of 21