Jump to content

Welcome to eMastercam

Register now to participate in the forums, access the download area, buy Mastercam training materials, post processors and more. This message will be removed once you have signed in.

Use your display name or email address to sign in:

Adding ASCII character to string?


Recommended Posts

We've got a lathe here that won't retract the tailstock while the spindle's turning unless it gets an "M31" first.  I've gotten this far:

# --------------------------------------------------------------------------
# Tailstock M code selection
sm26    : "M79"
sm26 = "M31" + sm26      #Tailstock retracted
sm25    : "M78"      #Tailstock engaged
stlstk  : ""         #Target string

fstrsel sm26 tlstk stlstk 2 -1
# --------------------------------------------------------------------------

and it will concatenate the M31 and M79, but now I need an EOB, or e$ between them since they need to be on separate lines.  Any takers?

 

Thanks,

 

-Matt

 

Link to comment
Share on other sites

You could add to your tailstock postblock a simple argument to output your M31 as needed...

 

ptailstock$      #NCI code = 904 available variables:
                #tlstck_on, stck_init_z, stck_final_z
                if toolchng <> two, ptoolend$
                toolend_flg = zero  #Do not execute ptoolend again after xfer
                [
                 !spaces$
                 spaces$ = zero
                 if speed > 0, "M31", e$                                                  #add this line
                 if prv_spaces$ > 0, " ",e$
                 if tlstck_on$ = 0, pbld, *sm26, "(Retract Tailstock)", e$
                 if tlstck_on$ = 1, pbld, *sm25, "(Engage Tailstock)", e$
                 spaces$ = prv_spaces$
                ]

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.

Join us!

eMastercam - your online source for all things Mastercam.

Together, we are the strongest Mastercam community on the web with over 56,000 members, and our online store offers a wide selection of training materials for all applications and skill levels.

Follow us

×
×
  • Create New...