Hello Guest it is April 25, 2024, 07:03:47 PM

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

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 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 »
5761
Mach4 General Discussion / Re: mx.wxMessageBox question
« on: December 02, 2017, 10:01:19 PM »
Hi,
I think DBK is on to the right thing.

The way I read the code is that without the intervening wx.wxMessageBox statement there is no time delay between

pos = mc.mcAxisGetPos(inst,  AxisNumber)   and

until pos == tonumber(AxisEnteredDistance)code]

Try removing the wx.wxMessageBox and substituting some sort of delay.

Craig

5762
Mach4 General Discussion / Re: Reference all home help.
« on: December 02, 2017, 09:51:34 PM »
Hi Nick,
have tried Daz's suggestion and seems to work a treat.

I see I made a typo in an earlier post, the two API calls are:
Quote
rc = mc.mcCntlGcodeExecute(
      number mInst,
      string commands)

and:
Quote
rc = mc.mcCntlGcodeExecuteWait(
      number mInst,
      string commands)


I copied and pasted from the API.chm without noticing the typo in it, namely the missing 'Wait'...

So the code is:
Code: [Select]
--Go To Center of table script Nick Mach4 Gen Discussion 1/12/2017
function GoCenter();
local inst=mc.mcGetInstance();
local Xhand=mc.mcRegGetHandle(inst,'iRegs0/Xcenter');
local Xcenter=mc.mcRegGetValue(Xhand);
local Yhand=mc.mcRegGetHandle(inst,'iRegs0/Ycenter');
local Ycenter=mc.mcRegGetValue(Yhand);
local Zhand=mc.mcRegGetHandle(inst,'iRegs0/Zcenter');
local Zcenter=mc.mcRegGetValue(Zhand);
local homed=0;
local enabled=0;
if (mc.mcAxisIsEnabled(inst,mc.X_AXIS)==1) then enabled=enabled+1 end;
if (mc.mcAxisIsEnabled(inst,mc.Y_AXIS)==1) then enabled=enabled+1 end;
if (mc.mcAxisIsEnabled(inst,mc.Z_AXIS)==1) then enabled=enabled+1 end;
local Xhomed,rc=mc.mcAxisIsHomed(inst,mc.X_AXIS);
local Yhomed,rc=mc.mcAxisIsHomed(inst,mc.Y_AXIS);
local Zhomed,rc=mc.mcAxisIsHomed(inst,mc.Z_AXIS);
if Xhomed==1 then homed=homed+1 end;
if Yhomed==1 then homed=homed+1 end;
if Zhomed==1 then homed=homed+1 end;
if (homed+enabled)==6 then;
    mc.mcCntlGcodeExecute(inst,"g53 g0 z"..Zcenter.."\n g53 g0 x"..Xcenter.."y"..Ycenter);
else
    wx.wxMessageBox('Axes not enabled/homed');
end
end

--

Craig

5763
General Mach Discussion / Re: Soft warning on z max
« on: December 02, 2017, 09:35:50 PM »
Hi,
what is the Z setting in the G55 work offset?. Remember that the numbers in G55 will be in machine co-ords and your soft limits in machine
co-ords also. Does your Z axis Soft Limits min-max 'window' accommodate the G55 Z value without error?

Craig

5764
Hi,
I personally find metric units to be less confusing especially when doing calculations. If, as yours are, your ballscrews are metric why would you bother converting
to inches, just one more potential numerical inaccuracy.

The only absolute recommendation is that once you have decided on the native units for your machine then leave them alone. I've seen newbies (and done it myself
when I was the newest newbie) attempt to change native units because they have a Gcode file in inches when they're accustomed to mm or vice versa.

Craig

5765
Hi,
rather longwinded post, its starts to make progress about page 3:
http://www.machsupport.com/forum/index.php/topic,35694.0.html

Craig

5766
Mach4 General Discussion / Re: Reference all home help.
« on: December 02, 2017, 08:36:12 PM »
Hi Nick,

Quote
Mach4 could actually be something if it only came with standard machine functions built in, no coding.

NFS has crafted Mach4 with a view to sales to OEM customers. If they were relying on hobbyists sales they might as well sack their employees and call
in the bankruptcy lawyers now as save the rush later.

The consequence  is that there is no such thing as  'standard machine functions', every machine and machine builder will have to determine the required
behavior and code it appropriately. You have, whether you intended it or not, elevated yourself into the category of machine builder/machine integrator,
get used to it.

In years to come there may well be enough code snippets that a newbie can select from a menu of a few hundred or thousands of items to make his installation
fit his machine. Code, such as the substance of this thread, may be reused many times for instance.

You could take the attitude that you shouldn't have to or don't want to do this, or look back a little to the outstanding contributions made by people like Hood, Rich,
BR49 (aka Terry), Tweakie, Gerry and the list goes on...and realize that you have the opportunity to be part of the groundswell of Mach4. I've already made my
decision.

Craig

5767
Hi,
I'm not sure that this will prove directly useful but I helped another bloke with a similar sort of situation with it:

Code: [Select]
LUA Syntax:
rc = mc.mcSignalWait(
number mInst,
number sigId,
number waitMode,
number timeoutSecs);


I'll try to find the original post but there is a couple of things that are worth highlighting:
1) You don't need the signal HANDLE, just its ID, in your case mc.ISIG_INPUT18
2) While there are nearly two hundred input signals defined in Mach4 only the first 64 signals work with this API...mc.ISIG_INPUT0 thru mc.ISIG_INPUT63
3) There are a number of return codes, it is very easy to miss the fact that under a particular circumstance an unexpected return code can be generated
and your code seems to fail for no reason. I suffered quite a few failures of this type while developing code which worked correctly. It is worthwhile
to code a 'trap and message' for those codes that while you don't expect them may well show up from time to time. It may well be that your completed code
is robust without such a precaution, but including such traps during development can save some hair pulling!

Craig

5768
Mach4 General Discussion / Re: Reference all home help.
« on: December 02, 2017, 07:42:03 PM »
Hi Nick,
been away for a day or two. What it means is while the move is happening the GUI is stopped, that is to say the DROs don't keep up. When the move finishes
and the Gcode interpreter returns to the GUI then the DROs catch up.

Daz has pointed out (PM) that there is two choices for an API call to execute Gcode. The one I chose is:
Code: [Select]
rc = mc.mcCntlGcodeExecute(
number mInst,
string commands)
which passes control to the interpreter and waits until the interpreter is finished. The other alternative is:
Code: [Select]
rc = mc.mcCntlGcodeExecute(
number mInst,
string commands)
where the commands are passed to the interpreter as before but then returns to the GUI immediately. Its not a huge deal either way, the function will work
its just nice to see the DROs responding. We need to do a little bit of experimenting to determine 1) whether my understanding is correct and 2) if returning before
the function completes introduces unwanted side effects.

This is the joy and at the same time the frustration of Lua/Mach...its so very flexible and capable (good) but can easily lead to unintended consequences (bad).
We are extremely fortunate that people like Daz and Smurph have blazed a trail.

Craig

5769
Mach4 General Discussion / Re: Acceleration Settings
« on: December 01, 2017, 12:51:06 PM »
Hi David,
yes drillmans prices are good. The last time I got some he had an over supply of 0.5mm tools and was selling them cheap for $2.60 USD each.
I got 30, wish I'd bought more now. I am getting good life out of tools now, a far cry from what it was like when I started.

Craig

5770
Mach4 General Discussion / Re: Reference all home help.
« on: December 01, 2017, 01:59:59 AM »
Hi Nick,
have added the code to the screen load script and put GoCenter() as left-up script in our Go Center button. It works but there is an issue. When I was debugging
I could watch the DROs change as the mc.CntlGcodeExecuteWait() statement did its thing.

As a Gcode function it is rightly executed by the Gcode Interpreter but while it does so the GUI doesn't see any service and it appears to block. It does
block for the length of time that the Gcode takes to run and while that is the case you can't see the DROs move.

Smurph has made some highly informative posts about this over the last week or ten days. I may go back and re-read to see if any simple solution exists.
I suspect that it will require a co-routine which is beyond my skill at present. Besides, 'making something simple complex' and therefore  losing any interest by you and
any others who may be following rather defeats the purpose of helping others.

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 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 »