Hello Guest it is April 23, 2024, 02:02:35 AM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - BR549

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 »
581
General Mach Discussion / Re: Custom plasma probing code?
« on: December 26, 2015, 12:02:14 PM »
One way around teh switch being effected by motion is to just use the solenoid to swing a transfer bar into play between the material and the switch. That way the switch never moves only the transfer bar does.

Also a way to keep more direct Gcode into play would be to use a SUB routine to hold the motion code for teh TOM routine and call it as a SUB (M98) . Subs are very stable in Mach3. You would store teh SUB in teh SUB directory and call it as needed .

(;-) TP

582
General Mach Discussion / Re: Custom plasma probing code?
« on: December 26, 2015, 11:50:50 AM »
OK from the top. IF you are to fire a solenoid to position a very sensitive switch to detect the metal surface (TOM)then the motion ACTION of the solenoid will more that like trip your sensitve switch(Been There).

It is NOT a good idea to use M7 M8 M9 as they are interrelated and if you turn on M8 then M7 and tried to ONLY turn off M7 with M9 you end up turning off M8 as well.

Yes it is BEST to do all the needed TOM (Top of Material) functions from a macro. There are several advantages on being you have all the needed code in 1 place and you can modify it once and it is a gobal update. Also RFH ( run from here) works very well as the motion Gcode G28.1 does NOT run from a macro when the RFH is called.  BUT sometimes Mach3 can pitch a witch with running Mcodes So it is all a tradeoff.

You may want to consider Ohmic touch off and use it with teh Z switch as a combined backup IF the ohmic misses then the Zswitch will kick in. OR in your case if you use the 30A consumables then it can simple run from the Zswitch .  OR you can use a combination of ALL that and still have your solenoid lower a probe tip for the ohmic side.

The ideal way would be to create a function to  minimize mixing Gcode and macro script in a macro. Do as much Motion in straight Gcode as you can and not have it run inside the macro.  YES that sounds mixed up as I say earlier that doing teh function is better from a Mcode BUT mach3 can be a funny bird sometimes (;-) It all depends

Yes it always a bad idea to call a macro from inside of another macro you can run into timing issue with Mach3. There is a WAY to run outside script code from inside of a macro that does not involve calling teh Mcode. It is only doable in the later versions of Mach3.  Check teh Mach3 CB programers manual for details.

NOW to add to the confusion The more that you hybridize the function the harder it is to deal with in the real world of program useage. You would never be able to share any of your Gcode OR use other's Gcode to run on your table.

I am willing to help you in any way I can so you can try all your options (;-)

(;-) TP




583
General Mach Discussion / Re: Limit switch issues
« on: December 26, 2015, 11:08:01 AM »
OK from what I see that you posted you have Zero CNC experience and Zero PC building experience and Zero PC usage experience to speak of. IF you had all that experience it would have taken you about 15 minutes to figure Mach3 out. 

You are simply here to get  the attention that you crave but are not getting elsewhere in life.




584
Artcam HAS a post configuration manual have you read it ??

(;-) TP

585
This is just a best guess , see what it does.


; Set up program header
;
START = "([FILENAME])"
START = "(Material Size) (X=[XSIZE], Y=[YSIZE], Z=[ZMATERIAL])"
START = "(Tool Number:[T]) ([TOOLDESC])"
START = "G90G80G20G49"
;START = "G0[ZH]"
;
; Program moves
;
FIRST_RAPID_RATE_MOVE  = "G0 [X] [Y] "
RAPID_RATE_MOVE  = "G0 [X] [Y] [Z]"
;
FIRST_FEED_RATE_MOVE   = "G1 [X] [Y] [Z] [F]"
FEED_RATE_MOVE         = "[X] [Y] [Z]"
;
FIRST_CW_ARC_MOVE      = "G2 [X] [Y] [J] [F]"
CW_ARC_MOVE            = "G2 [X] [Y] [J]"
;
FIRST_CCW_ARC_MOVE     = "G3 [X] [Y] [J] [F]"
CCW_ARC_MOVE           = "G3 [X] [Y] [J]"
;
NEW_SEGMENT_POST_TOOLCHANGE= "(Tool Number:[T]) ([TOOLDESC])"
NEW_SEGMENT_POST_TOOLCHANGE= "M3 [S)"
;
; End of file
;
END = "G0[ZH]"
END = "G0[XH][YH]"
END = "M30"
; M30 = program end and rewind

586
Are you SURE you want to do it that way ??. Normally you would want to FIRST move to Z rapid height THEN move in XY to teh start position then lower Z at feedrate to start.

That is what your first example is doing.

IF you first MOVE in XY without lifting Z to rapid clearnace you could easily tear something up if you hit something with teh tool. The Machine has NO idea where anything is so that is teh reason you would move it to a safeZ height BEFORE teh XY moves.

What Cam program is that ?  I can guess what to change but easier and safer to just look it up then you are sure.

Just a thought, (;-) TP

587
General Mach Discussion / Re: More inputs and outputs needed in Mach3
« on: December 25, 2015, 06:43:46 PM »
You also need to understand is the ESS has larger memory and I think A larger faster processor. THAT can make a BIG difference in what you can have programmed on the motion unit itself.  With an outside controller the controller has to be the Big Brain and do ALL of teh actual motion through pulsing ect AND do limits homing,probing. The PC just becomes the basic  planner.

Commercial CNCs have been using that scheme for decades Most also run Windows as the user interface and either use Ethernet or Fiber ethernet for teh Com link. Fiber link is also nothing new for CNC it has been around for a long time now and very stable. When the USB SS  was first being planned I talked to Greg about fiber link (;-). Other controllers had been using it for years even some DIY units.

The New UC400 ETH  from CNCdrives is reported to have a  large memory and a wickedly fast processor and ethernet with their OWN com protocol that makes the Com side almost real time in nature. Contrary to popular believe even real time controllers have a buffer (;-)

Also the old MsDOS 6.0  made a nice controller and it was real time as well.  There are STILL modern Commercial controllers that run MSdos as it's OS.

Just  a thought, (;-) TP

588
General Mach Discussion / Re: Limit switch issues
« on: December 25, 2015, 04:24:59 PM »
I think you hit the nail on the head when you said you had no idea of what you are doing and it does not seem that you want to make the effort to learn. Many thousands HAVE made the effort and now enjoy a really cool hobby.

Did you REALLY believe the sales hipe of plug in plug and professional sales people????  Here is a hint NOT everything on the internet is the truth. There are just as many shysters on it as there were 100 years ago in any other sales market.

AND Mach3 DOES have a recent file list (;-).




589
General Mach Discussion / Re: Limit switch issues
« on: December 25, 2015, 04:17:14 PM »
There is your answer get a makerbot that will solve all your problems (;-)

You are seriously WRONG about everything changing like you say Most have stayed within a very narrow margin of change FOR A GOOD REASON.

 (;-) So what do you think changed about printers in the last 20 years.  You plug them in load the driver and loade teh print cartridge and configure your program to use it load the right size paper and away you go.

There are Plugin in play Commercial CNC machines . Set them in place ,  load your tools and material , insert Gcode program and push teh Big green button and have at it. ALL the pre engineering and setup already done for you.

All you have to do is open your wallet then learn Cad and CAM and tooling and material applications (;-). There really is no escaping reality, try as you might.

590
General Mach Discussion / Re: G76 Lathe Theading Problem
« on: December 25, 2015, 03:45:48 PM »
Mach4 would definetly be a science project at this point. Do a simple search for the best ver for turn and threading it may NOT be V062 it is probably an older version.

(;-) TP

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 »