Hello Guest it is May 17, 2024, 02:55:15 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

2821
General Mach Discussion / Re: Reversing trajectory of .DXF conversion
« on: June 08, 2006, 06:25:07 AM »
It can not be done in that importer :( Lazy Cam is free in the development version of Mach3...

2822
General Mach Discussion / Re: Pendant Control
« on: June 07, 2006, 06:27:57 PM »
Who made the pendant?

2823
General Mach Discussion / Re: Reversing trajectory of .DXF conversion
« on: June 07, 2006, 06:23:44 PM »
Is this in LCAM?

2824
VB and the development of wizards / Re: Event Based Code
« on: June 07, 2006, 06:21:04 PM »
You have from 0-1999 that you can use if you need to :)

2825
Mach3 and G-Rex / Re: Grex and THC
« on: June 07, 2006, 06:19:00 PM »
Art and I have talked about adding the THC code to a plug in... This would make it so any analog input and digital inputs could be made into a THC! I have no idea when or if we will get to it but it has been on our minds :)

2826
VB and the development of wizards / Re: Event Based Code
« on: June 07, 2006, 07:14:18 AM »
If you are going to do that write theit as a Ver in Mach3... This is how I did a 2X10 array:
     For i=0 To 19 Step 2
        Call setVar ((120 + i), GetUserDRO(1140 +i))
        Call setVar ((121 + i), GetUserDRO(1141 +i))
     Next

to read the array I did the following:

For i=1 To 10
  onOff = Int( LEDonOff / ((10^ i)/10)) - Int( LEDonOff / ((10^(i+1))/10))*10
  X = FormatNumber (GetVar(100 +((i-1)*2)),4)
  Y = FormatNumber (GetVar(101 +((i-1)*2)),4)
  If onOff = 1 Then
        If Nc=0 Then
          Call Drill_cycle(X,Y,Z,Q,R,F)
        Else
          Code " X" & X & " Y" & Y
        End If
        Nc=1
  End If
Next

I did this so I could have a gobal variable... I also used a register to save the led's states and that tells the loop if the point is used... I know it is not how you would do it if you were doing real VB but it works!

2827
VB and the development of wizards / Re: E-stop VB script
« on: June 06, 2006, 08:10:09 PM »
Try getLED(0) this is the reset LED :)

2828
General Mach Discussion / Re: Jog Y in minus and X motor moves
« on: June 06, 2006, 08:06:00 PM »
Art and I both have 64bit AMD's so it should :)

2829
General Mach Discussion / Re: robot input with encoders
« on: June 06, 2006, 08:04:38 PM »
It is all C++ and it takes a bit to learn :(

2830
General Mach Discussion / Re: robot input with encoders
« on: June 06, 2006, 07:12:35 PM »
That could be done in a plug in ;) (I think)