Hello Guest it is May 17, 2024, 01:33:09 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 - Brian Barker

2831
General Mach Discussion / Re: robot input with encoders
« on: June 06, 2006, 07:00:25 PM »
We are thinking about adding the inverse kinematics to do that but you are looking at about a year out at least :(

2832
Mach3 and G-Rex / Re: Mach4 Homing and limits.
« on: June 06, 2006, 06:58:08 PM »
We are just about to start the rewrite of the Grex :( The Grex is going to be a plugg in so you can modify it as you see fit... This is going to take some time but I can tell you that all the problems will be fixed when the plug in is done.

Thank you
Brian


PS as for hooking up the VFD i would use the 0-5V out of the Grex :)

2833
VB and the development of wizards / Re: E-stop VB script
« on: June 06, 2006, 03:07:49 PM »
You need to save the macropump.m1s macro in the macros/mach3mill directory (if that is the profile that you are using) this is where the macro that you are going to put all your code into :) There is a video on the Macropump that I made some time ago...  The maco pump gets run a few time's a sec all the time! so take care in writing your macro!

There are many things to learn but you are getting there (you have good questions)

Thanks
Brian

2834
VB and the development of wizards / Re: E-stop VB script
« on: June 06, 2006, 01:51:27 PM »
This is a good way to play the wave files, The length on the macropump is not going to hurt the computer at all :)

To check the LED look in the Wiki at the LED codesHere: http://www.machsupport.com/MachCustomizeWiki/index.php?title=Standard_LEDs. once you have the code you can do this:

If(GetLED(0))Then
'Put your code here
end if

2835
VB and the development of wizards / Re: Event Based Code
« on: June 06, 2006, 01:45:25 PM »
I have not setup any array's in VB :( I can tell you how to do it in C++.. I will have a look at the house and see what I have for code that I can give you ;)

2836
VB and the development of wizards / Re: Wizard Startup
« on: June 06, 2006, 01:41:56 PM »
 ;D

2837
VB and the development of wizards / Re: E-stop VB script
« on: June 06, 2006, 08:22:11 AM »
You are going to have to put that in the macropump... You can check the state of the Estop LED and if you see an estop run the script that you posted :)

That should get it working

2838
General Mach Discussion / Re: Configuring servo spindle
« on: June 05, 2006, 06:39:58 PM »
I see :) Try changing your steps per unit under motor tuning. I think you need to take the number that is there and divide it by 10.

2839
VB and the development of wizards / Re: Event Based Code
« on: June 05, 2006, 06:33:21 PM »
The best way to do this in Mach3 is to have each Inc take you to a new screen... OR you can do it on the same screen with a counter running in the background. You could then do Counter * inc = Speed    Call SetOEMDRO(1200.Speed)  Something like that should work...

2840
VB and the development of wizards / Re: Scripting DRO
« on: June 05, 2006, 06:29:41 PM »
You can't do this :(

I add error checking to the Post button and have it tell the user that it is going to be changed to a 1... You can also set up a while loop and have The user type in a number till they get one that works :)