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:

CNCGUY

Verified Members
  • Posts

    485
  • Joined

  • Last visited

Everything posted by CNCGUY

  1. OK ToolMan, I have another one. Is it possible to re-organize the View Names? Thanks
  2. Check this out!! Installation is required on the remote PC. Ive used it a couple times and works great. Make sure you use a legit address. Log Me In HTH
  3. Thank you - It had to be so simple!!
  4. Can anybody tell me how to rename the view names? Ive looked in help and just cant seem to find it. Thanks all.
  5. code: # Start of File and Toolchange Setup # -------------------------------------------------------------------------- pheader #Start of file !spaces spaces = 0 q1 #Need for question prompt q1 is what displays the question in here for fq 1 code: # Prompt message strings # -------------------------------------------------------------------------- fq 1 tool_lngth Enter the Feed/Part Length [0 = OFF]: Should be able to place a # in front of any q's you dont want to answer. BTW - Back up the post first. HTH
  6. Randy, this is what I do to add 1 to the subs. code: main_prg_no = main_prg_no + sav_progno #Add sub number offset HTH
  7. Chris, That worked. Just wish I could find out why it doesnt work the "right" way.
  8. quote: There should be a setting in your op to make full pass at final depth. When using "angle", full pass at final depth is not available in V9 or X. Not sure why it works in V9?
  9. Hey all, In V9, when doing a countour-ramp toolpath, the cutter would make a complete circle for the last pass at final depth. In X, the final pass at final depth is not happening. See sample code below. I dont see aything in the post's so I dont know where or how to fix it. Any help is appreciated. Code From V9 (Modified Fanuc Post) code: O01001 (1504-20-20-BG 2.000" X 90 DEG. INDEXABLE FACE MILL - RAMP) G01 Z0. F62. X.9975 G02 X-.9975 Z-.1095 I-.9975 J0. X.9975 Z-.2189 I.9975 J0. X-.9975 Z-.3283 I-.9975 J0. X.9975 Z-.4377 I.9975 J0. X-.9975 Z-.5472 I-.9975 J0. X.9975 Z-.6566 I.9975 J0. X.8806 Y.813 Z-.6736 I-.9975 J0. X-.8806 Y1.7502 I-.8806 J.4686 X.9975 Y1.2816 I.8806 J-.4686 X.8806 Y.813 I-.9975 J0. G01 X1.7612 Y.3444 G00 Z.1 M99 Code From X (Updated V9 Post) code: O01001 (TEST 2.000" X 90 DEG. INDEXABLE FACE MILL - RAMP) G01 Z0. F62. X.9975 G02 Z-.2189 I-.9975 J0. Z-.4377 I-.9975 J0. Z-.6566 I-.9975 J0. X.8806 Y.813 Z-.6736 I-.9975 J0. X.9975 Y1.2816 R.9975 X.8806 Y.813 R.9975 G01 X1.7612 Y.3444 G00 Z.1 M99
  10. OK, here is what I ended up doing. Comment/Critique quote: % O01000 (MAIN PROGRAM) (NEXT SCHEDULED PALLET) #100= 1 M98 P9000 M30 (CURRENT PALLET) #100= 2 M98 P9000 M30 % quote: % O09000 (PALLET CODE) N10 IF [ #100 EQ 0 ] GOTO9999 IF [ #100 EQ 1 ] GOTO100 IF [ #100 EQ 2 ] GOTO200 M99 P10 N100 (NEXT SCHEDULED PALLET) G103 P2 #100= 0 M46 Q2 P101 (PALLET 1 CLAMP CHECK - PRE INDEX) M46 Q1 P102 (PALLET 2 CLAMP CHECK - PRE INDEX) M99 P100 N200 (CURRENT PALLET) G103 P2 #100= 0 M46 Q1 P201 (PALLET 1 CLAMP CHECK - POST INDEX) M46 Q2 P202 (PALLET 2 CLAMP CHECK - POST INDEX) M99 P200 N101 / IF [ #1118 EQ 1 ] GOTO111 (0 FOR TEST) / IF [ #1118 EQ 0 ] GOTO10110 / GOTO101 N111 / IF [ #1038 EQ 0 ] GOTO301 / IF [ #1038 EQ 1 ] GOTO10010 / GOTO10101 GOTO301 N102 / IF [ #1118 EQ 1 ] GOTO112 (0 FOR TEST) / IF [ #1118 EQ 0 ] GOTO10110 / GOTO102 N112 / IF [ #1039 EQ 0 ] GOTO302 / IF [ #1039 EQ 1 ] GOTO10010 / GOTO10102 GOTO302 N201 / IF [ #1038 EQ 0 ] GOTO1001 / IF [ #1038 EQ 1 ] GOTO10000 / GOTO10111 GOTO302 N202 / IF [ #1039 EQ 0 ] GOTO1002 / IF [ #1039 EQ 1 ] GOTO10000 / GOTO10112 GOTO301 N301 / M50 (ADD P1 FOR TEST) / GOTO201 M50 P1 M99 M30 N302 / M50 (ADD P2 FOR TEST) / GOTO202 M50 P2 M99 M30 N1001 M46 Q2 P10100 G103 M98 P1001 M99 P100 N1002 M46 Q1 P10100 G103 M98 P1002 M99 P100 N9999 M00 (START WITH MAIN PROGRAM !!!!) M99 P200 N10000 M00 (CURRENT PALLET UN-CLAMPED !!!!) M99 P200 N10010 M00 (SCHEDULED PALLET UN-CLAMPED !!!!) M99 P100 N10100 M00 (WRONG PALLET LOADED !!!!) M99 P200 N10110 M00 (PALLET BUTTON NOT READY !!!!) M99 P100 N10101 M00 (PALLET 1 PRE INDEX CLAMP CHECK FAILED !!!!) M99 P10101 N10102 M00 (PALLET 2 PRE INDEX CLAMP CHECK FAILED !!!!) M99 P10102 N10111 M00 (PALLET 1 POST INDEX CLAMP CHECK FAILED !!!!) M99 P10111 N10112 M00 (PALLET 2 POST INDEX CLAMP CHECK FAILED !!!!) M99 P10112 % quote: % O01001 (MACHINE CODE PALLET 1) / / / M99 % quote: % O01002 (MACHINE CODE PALLET 2) / / / M99 %
  11. Thanks guys. It will be a couple hours yet before I can test this info. All other suggstions are still welcome!!!
  12. Is it possible to "jump" to a specific line when going to a sub program? O1000 (MAIN) N1 M98 P9000 (GOTO LINE 100) M30 N2 M98 P9000 (GOTO LINE 200) M30 O9000 (SUB) N100 (MACHINE CODE #1) M99 N200 (MACHINE CODE #2) M99 This is a HAAS machine. Any suggestions if this wont work?
  13. Thanks John. I'll have to work on it and see if I can make it work!!!
  14. John, This is for X? Would you post a sample program with multiple, peck tap holes. Thanks
  15. Randy, Open the file named thread.tbl in your MCAMX2 folder. You can add/mofify to your spec's. HTH
  16. I'm still having a problem!!! Any body else???
  17. Thanks guys. Both good options. Just need to re-train myself. You know what they say about old dog's and new tricks!!!!
  18. Is it just me, or is "recent files" not available any more. Is there a way to get it back???? I see the file name has the option now to look at recent files, but not quite as quick. Some times our file names can get quick long too.
  19. Looks like I got it now. . . .not sure what i did? As long as it works
  20. When posting a program, the M08 will not post. I did some searching and found what should fix it "support coolant using coolant value in post-processor". I have "checked" this, but still no M08. Any ideas? Using a modified V9 Fanuc Post updated to X.
  21. Jimmy, That got it. Thanks !!!!! Hopefully I can get X going to my liking soon and do away V9.
  22. Didnt help!!!! V9 - Hasp not found V10 - Runs fine
  23. Its not default, but I use it once in a while. Why?

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...