Hello Guest it is May 17, 2024, 11:35:55 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 - Brian Barker

801
General Mach Discussion / Re: Accurate homing
« on: August 20, 2007, 10:19:45 AM »
Have a look at the encoder board from Rogers machine.. I think it is what you are looking for.
thanks
Brian

802
LazyCam (Beta) / Re: move to new layer
« on: August 18, 2007, 09:25:29 PM »
We can look into that ... I can see where that could be a big help.

Thanks
Brian

803
General Mach Discussion / Re: Feedrate problem
« on: August 18, 2007, 09:23:31 PM »
You have less accel on the Y axis in one XML

Thanks
Brian

804
General Mach Discussion / Re: Macropump problem?
« on: August 18, 2007, 02:05:14 PM »
Here is your code and I have tested it in the macro pump... so test this and see if it work..

Sub Main()

ES=GETLED(0)

If ES=True Then
  ACTIVATESIGNAL(OUTPUT1)
Else
  DEACTIVATESIGNAL(OUTPUT1)
End If

Call SetUserLED(1201,IsOn(INPUT1))
Call SetUserLED(1202,IsOn(INPUT2))
Call SetUserLED(1203,IsOn(INPUT3))
Call SetUserLED(1204,IsOn(OEMTRIG1))
Call SetUserLED(1205,IsOn(OEMTRIG2))
Call SetUserLED(1206,IsOn(OEMTRIG3))
Call SetUserLED(1207,IsOn(OEMTRIG4))
Call SetUserLED(1208,IsOn(OEMTRIG5))
Call SetUserLED(1209,IsOn(OEMTRIG6))
Call SetUserLED(1210,IsOn(OEMTRIG7))
Call SetUserLED(1211,IsOn(OEMTRIG8))
Call SetUserLED(1212,IsOn(OEMTRIG9))
Call SetUserLED(1213,IsOn(OEMTRIG10))
Call SetUserLED(1214,IsOn(OEMTRIG11))
Call SetUserLED(1215,IsOn(OEMTRIG12))
Call SetUserLED(1216,IsOn(EMERGENCY))

End Sub

Function IsOn(sig)
 
If(ISACTIVE(sig))Then
   IsOn = 1
Else
   IsOn = 0
End If
End Function
 
Main

thanks
Brian

805
General Mach Discussion / Re: Macropump problem?
« on: August 17, 2007, 11:09:17 PM »
for a test put this line in the macro pump

Call SetDRO(0,0)

then try to jog the X axis ... it should keep writing the axis to zero

also if you would like to set the led you need to have a Call

Call SetUserLED(1000,1)


Hope that helps
Brian

806
General Mach Discussion / Re: wells index CNC 700 summit dana control
« on: August 17, 2007, 11:12:19 AM »
You can get NEW drives for only 114 a drive and you will be able to get new drives if you ever have a problem... I think the best thing you can do is take out the old drives and have something you can work with :)  in the end it will be the best 350.00 that you have spent on your project!

Just what I have found from trying to do stuff like that in the past :(

Brian

807
LazyCam (Beta) / Re: tangential to track in lazy cam 2.02v
« on: August 15, 2007, 11:10:41 PM »
I will have a quick look and see if I can get the data to calc the angle...

808
Show"N"Tell ( Your Machines) / Re: My Upgraded Maxnc 15 OL
« on: August 15, 2007, 11:07:13 PM »
Great looking work!


I need to start playing with code like that :)

You guys get to do all the cool stuff and I am stuck making simple programs :(

809
If you tell my wife we can do stuff like that I am off the forum!

810
General Mach Discussion / Re: Error Opening Video Window
« on: August 15, 2007, 10:38:57 PM »
it should work.... You need to close the video stream when you exit.. other then that you should be good to go.

thanks
Brian