![]() | |
| Home Page | Mark Forums Read | Today's Posts | My Replies | Classifieds | Reviews | Photo Gallery | Web Links | Share Files | Advertise With Us | Ad List |
| |||||||
| This forum is sponsored by: |
![]() |
| | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
| |||
| |||
Mastercam X3MU1. Haas TL-2 with turret and tailstock.New 1 1/2 months ago. Still trying to get a fully working post for my TL-2 Hass lathe. Have contacted my reseller about issues I am having and they keep telling me they are working on it. I still can not thread using canned cycle (unless I edit the NC file) but it will do it in boxed. I am unable to select Home possition, the post always sends turret to machine home to change tools and that does not work well when you need the tailstock. I have been able to edit the NC file to insert my selected home position but it is a pain when you have to do that every time. Thanks for all the responces. |
|
#2
| ||||
| ||||
| We do try to help whereever possible, *****Remember COPY YOUR POST before doing any alterations**** and TEST it very often. ( finding that a comma or a $ is missing is hard when major changes have occured ). if the altered post stuffs up, it is easier to restore the last good post. What basic post has been adapted to your HAAS ? Paste in the top 10 lines also show us what you need altered ( eg from this to be this ) Code: This is what is posting Code: I want this |
|
#3
| |||
| |||
| Here is a copy of what works and what does not, First working post. (edited by me to sent turret to selected home) G29X5.12Z0.M05 ( first edit point ) T0100 M01 (TOOL - 2 OFFSET - 2) (OD FINISH RIGHT - TRIANGLE INSERT - TNMG332FF) G0T0202 G97S500M03 G0G54X.5752Z0. G50S500 G96S5000 G1X.3752F.0025 Z-.5669 X.4375 G3X.5Z-.5981R.0313 G1Z-1.8154 X.5359 G3X.5984Z-1.8466R.0313 G1Z-3.7391 G2X.8613Z-3.9304R.2049 G3X.8884Z-3.9406R.0313 G1X.9871Z-4.0047 G3X1.Z-4.0237R.0313 G1Z-6.4803 X1.625 X1.7664Z-6.4096 G29X5.12Z0.M05 ( second edit point ) T0200 M30 original post G28U0.W0.M05 ( section that sends turret to machine home ) T0100 M01 (TOOL - 2 OFFSET - 2) (OD FINISH RIGHT - TRIANGLE INSERT - TNMG332FF) G0T0202 G97S500M03 G0G54X.5752Z0. G50S500 G96S5000 G1X.3752F.0025 Z-.5669 X.4375 G3X.5Z-.5981R.0313 G1Z-1.8154 X.5359 G3X.5984Z-1.8466R.0313 G1Z-3.7391 G2X.8613Z-3.9304R.2049 G3X.8884Z-3.9406R.0313 G1X.9871Z-4.0047 G3X1.Z-4.0237R.0313 G1Z-6.4803 X1.625 X1.7664Z-6.4096 G28U0.W0.M05 ( this section sends to machine home ) T0200 M30 Thanks Last edited by t.lewis; 05-17-2009 at 06:34 AM. Reason: Additional inf. Original post was for a 2 axis slant bed i was told |
|
#4
| ||||
| ||||
| Lets see if I can instruct some post reading / writing basics pbld=block skip, n$=sequence number, e$=end of line note, the comma is critical. look in your post for this area the pheader is obvious next, "lsof0" =lathe start of file 0, it has a branch to "lsof", followed by "ltlchg". Can you follow this general structure ? Code: pheader #Start of file
"%", e$
*progno, e$
pbld, n$, *smetric, e$
"(PROGRAM NAME - ", progname, ")", e$
"(DATE=DD-MM-YY - ", date, " TIME=HH:MM - ", time, ")", e$
lsof0 #Start of file for tool zero, lathe
lsof
lsof #Start of file for non-zero tool number, lathe
sav_cc_1013 = cc_1013 #eap 1/17/03
ltlchg
ltlchg #Toolchange, lathe
toolchng = one
gcode = zero
copy_x = vequ(x)
pcc_capture #Capture LCC ends, stop output RLCC
c_rcc_setup #Save original in sav_xa and shif now your changes relate to toolchanging befor and after running an operation with the same tool find in your program the part that would output the G28 it would look like this Code: pbld, n$, *sg28ref, "U0.", "W0.", e$ Code: pbld, n$, *sg28ref, "U0.", "W0.", "...#1...", e$ BTW -- these alterations will apply to every operation you post, every tool you use external and internal, I suggest using different codes in your program ie G28 U0. Z1. ( home in X and 1" off in Z0 ) it would also act as a check that tool has been set in Z or that the part origin has been set Code: pbld, n$, *sg28ref, "U0. Z1.",e$ |
|
#5
| |||
| |||
| Superman I have found everything you are talking about and will be able to try my Tuesday. I got a funeral Monday. Shouldn't mastercam do this for me when I pick Home Position - user defined, and select a point were i want the turret to home to before tool change. |
| Sponsored Links |
|
#6
| ||||
| ||||
| You have a "user defined Home Postion" BUT, if you notice in your post pbld, n$, *sg28ref, "U0.", "W0.", e$ this ouputs your G28 and whatever string is in quotes "", is what is put into the NC file if you turn on block skip and post the code, you will get / N1 G28 U0. W0. Did you notice in my 1st post, how I showed how to output an indicator ? pbld, n$, *sg28ref, "U0.", "W0.", "...#1...", e$ (in the post) / N1 G28 U0. W0. ...#1... ( is in your NC code ) |
|
#7
| |||
| |||
| Sorry for taking so long to get back to you. I could not reproduce your indicator in my post output so I must be missing something or doing something wrong. Do the U & W represent X & Z incremental from machine home? I will keep working on it till I get it. Thanks |
|
#8
| ||||
| ||||
| Do a search for sg28ref , as there may be more, ***leave the 2 up in the format statement area untouched*** ( also serialise the indicators ie 1,2,3 easier to see which one creates that output ) The # is the start of a comment line, so don't put the "indicator" after one of those. ie "--123--", e$ # comment area -in front of the # will be run through the post and you will get --123-- -behind is only a reference for reading the post by you more info for you The G28/G30 output is controlled by Misc. Interger #3, and should be set to zero for G28 The * ( asterisk ) in the post forces the output to the NC code, ( restates that item ) |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| someone used mastercam for haas tl series | alain aleman | Post Processors for MC | 2 | 02-16-2010 05:38 PM |
| MasterCam/HAAS Tl-1 G-Code Question | jmanjohns | Haas Lathes | 2 | 02-02-2009 07:36 AM |
| Haas TL1 Mastercam x2 postproc | kiwigips | General CNC (Mill and Lathe) Control Software (NC) | 2 | 11-18-2008 12:11 PM |
| Need Help!- Need post for mastercam 9.1 for cnc haas lathe | katsbobo | Post Processors for MC | 0 | 08-23-2008 05:47 PM |
| Mastercam 7 portprocessor for Haas | Goldeneaglemfg. | Haas Mills | 3 | 11-21-2005 03:36 PM |