584,814 active members*
5,085 visitors online*
Register for free
Login

Search:

Type: Posts; User: eckitsch

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    1,006

    Re: Gcode macro help haas ngc control

    IF [...] THEN
    or
    IF [...] GOTO123
    ...
    N123

    or

    WHILE [...] DO1
    ...
  2. Replies
    4
    Views
    2,562

    Re: Haas 4th Axis Diameter settings

    with NGC read setting34 with #nn=#20034
    with pre NGC or older not possible
  3. Re: Custom deep hole drilling program, or an solution with standard cycle?

    Look here, many examples, the Heidenhain NC Solutions database

    https://www.klartext-portal.com/en/tips/nc-solutions/solution/bohrablauf-mit-beginn-in-einer-pilotbohrung/
  4. Thread: Z MOTION LOCK

    by eckitsch
    Replies
    6
    Views
    971

    Re: Z MOTION LOCK

    Yes, this is possible, but the position cycle must be replaced by a position macro. This macro must be given an global parameter as a counter for the currently drilled hole.
    And possibly a...
  5. Re: Need help with custom program for renishaw probe

    Hallo,

    habe in Deinem Programm etwas aufgeräumt und umstrukturiert. Habe es aber nicht testen können, also keine Garantie auf Fehlerfreiheit!
    Nach dem Tasten OP2 in X bricht bricht das Programm...
  6. Replies
    3
    Views
    1,400

    Re: Constantly changing variable in macro

    You can also pre-process the value before passing it to the macro.
    For example:

    #100=COS[#101]*#102
    ...

    G65 Pnn A#100
  7. Replies
    3
    Views
    1,400

    Re: Constantly changing variable in macro

    Yes you can with lokal or global variables.

    Example:
    N11
    IF [#970 NE 4902] GOTO 12
    G65 P#970 X#11 Y#12 Z#996 R#988 I#974 D#977 E#978 F#979
    M99
  8. Replies
    1
    Views
    1,571

    Re: Macro for Renishaw probe to align 4th axis

    How accurate is the repeat accuracy when clamping?
    Is the part clamped to the center of rotation?
    Can you give some dimensions of the part?
  9. Thread: Macro issue

    by eckitsch
    Replies
    1
    Views
    860

    Re: Macro issue

    There is no "ELSE" on a HAAS.
  10. Replies
    1
    Views
    756

    Re: Haas MiniMill Macro issue

    Replace N66 with:
    (This code is untested)

    N150
    #10000=2. (COUNTER)
    N155
    IF [#10001 GT #[10000+#10000]] GOTO160
    #10001=#[10000+#10000]
    N160
    #10000=#10000+1.
  11. Thread: Loop Fanuc Oi

    by eckitsch
    Replies
    1
    Views
    690

    Re: Loop Fanuc Oi

    Punktfolge auf einer Geraden / line at angle

    G81 Z-5. R1. F100 L0
    G65 P4705 {X Y} I J A
    {G65 P4705 X Y I J A}
    G80

    G65
    P Unterprogrammnummer / cycle
    X X-Position des 1. Punktes (abs.)...
  12. Replies
    3
    Views
    1,882

    Re: Dmu 60T millplus 410 touch probe

    Of course, as far as possible. We have a DMU50 evo.
  13. Replies
    3
    Views
    1,882

    Re: Dmu 60T millplus 410 touch probe

    Tool adresses P.. T.. L.. R.. Q3=9999
    measuring probe Q3=9999 no spindle rotation possible and rapid motion (MC) restricted. Only M19 D..
  14. Replies
    1
    Views
    2,042

    Re: Cd-lite looking for software !

    Hello,
    Look here:

    https://de.industryarena.com/forum/index.php?autocom=downloads&showfile=44
  15. Replies
    5
    Views
    2,689

    Re: Haas - Get active radius offset possible?

    Hi,

    if the number of the spindle tool the number of the tool offset, you can read out the active spindle tool with #3026 and determine the actual tool diameter from it.
    #7=#[3200+#3026]...
  16. Re: Running a probing cycle after a certain amount of parts

    COUNTER 1 for M30 is #3901

    ...
    #1=#3901 mod 10
    #2=#3901 mod 25
    #3=#3901 mod 50
    #4=#1+#2+#3
    IF [#4 NE 0] GOTO 1111
    (PROBING)
    ...
  17. Replies
    4
    Views
    2,562

    Re: Haas 4th Axis Diameter settings

    It's not perfect, but it could be.
    The whole thing only works when you start the program for the first time. A random number is assigned to each program.
    This is checked against a comparison...
  18. Replies
    2
    Views
    2,136

    Re: Can't Delete Programs

    Use the control tab / menu for file options.
  19. Thread: G52 code

    by eckitsch
    Replies
    1
    Views
    1,434

    Re: G52 code

    Hi,
    G52 is a local and absolute zero offset. The shift has a modal effect. It is retained when the zero point is changed. If you have set an offset (G52 X.. Y.. Z..), you must also delete it...
  20. Re: Custom VPS templates (Visual Programming System)

    The image size is 420 x 300 px. Format .png or .jpg
  21. Re: Custom VPS templates (Visual Programming System)

    In the directory with the macro, a subdirectory for the images.
    Attention! A dot in front of the name of the subdirectory hides the directory on the machine. Then you can no longer get to the...
  22. Re: Custom VPS templates (Visual Programming System)

    To use the VPS template, you have to copy it from the machine to the PC and open it with Excel.

    Here is the example from the picture. Correct the file extension to .XML
    451319
  23. Re: Custom VPS templates (Visual Programming System)

    Hello, I also played a bit with the template.xml. Here is an example of a position macro with max. 5 positions.

    443213
  24. Do you know system variable (#3003) for automatic...

    Do you know system variable (#3003) for automatic operation control? You start the program in AUTOMATIC. From N10 Switch to Single Block. #3003 = 1 (HAAS) disable Single Block and the program goes...
  25. Replies
    1
    Views
    2,042

    Hi, for a Millplus (V410): operating mode...

    Hi,

    for a Millplus (V410):
    operating mode "CONTROL"
    button "MENU"
    with cursor right or left to "INSTALLIEREN"
    with cursor down to "MASCHINENKONSTANTEN"

    MC 5 for language
    0=german /...
  26. Replies
    1
    Views
    1,521

    Hi, you can use a Haas or Fanuc post. The...

    Hi,

    you can use a Haas or Fanuc post. The controls are 95% equal.

    eckitsch.
  27. Look at here ...

    Look at here

    https://de.industryarena.com/siemens/forum/siemens-sinumerik--27
    https://de.industryarena.com/siemens/forum/dezimal-in-zeit--17915.html

    eckitsch.
  28. Replies
    3
    Views
    4,437

    The radiator is for the Spindle cooling. 60%...

    The radiator is for the Spindle cooling.
    60% water and 40% antifreeze
    I have a lubrication plan but in German.
  29. Replies
    3
    Views
    4,437

    Hi,...

    Hi,
    http://www.millplus.de/documentatiev520de.htm
    You can use all “Control system Manual” from V410 to V530, all are similar.
    V520 chapter 15

    tool manual in/out to the spindle

    change to...
  30. Replies
    1
    Views
    4,717

    I am currently writing an engraving cycle with...

    I am currently writing an engraving cycle with different character encodings. I don’t want to write one programming row per character as normal. I want to create a character string in a...
Results 1 to 30 of 39
Page 1 of 2 1 2