Hello Guest it is March 29, 2024, 08:34:05 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 - Robin06790

Pages: 1
1
General Mach Discussion / Re: Mach 4 Question
« on: April 03, 2014, 01:08:12 PM »
So if i want closed loop what type of controlers should i be looking At

Robin

2
General Mach Discussion / Mach 4 Question
« on: April 03, 2014, 10:34:09 AM »
Will mach 4 be able to use Encoders  for closed- loop operation
Thanks Robin

3
VB and the development of wizards / Re: need help with macro
« on: July 15, 2013, 12:12:27 PM »
Thanks hood that worked Great

Robin

4
VB and the development of wizards / Re: need help with macro
« on: July 15, 2013, 08:51:13 AM »
oh yes i need help help help   i have read a lot of posts and have solved some of my problems   first i foun out u can not use any m code below 100 so i renamed it m113.m1s    this i my new program after a lot of time it almost works right
here is what it does from MDI it runs  when i try to run it from the program it sticks on the path generation screen saying please wait Generating Path
i figured it is stuck in some kind of endless loop??????

m113.m1s

Do
deactivatesignal(output5)
If (getoemled(822))Then
Exit Do
End If
Loop
Do
activatesignal(output5)
If (getoemled(821))Then
Exit Do
End If
Loop
Do
deactivatesignal(output5)
If (getoemled(822))Then
Exit Do
End If
Loop
end

thanks Robin


5
VB and the development of wizards / need help with macro
« on: July 11, 2013, 10:28:30 AM »
I have been a cnc tech for years and
all inputs and outputs work and have been tested
   my biggest problem is that i am familiar with latter logic and programing of other plcs which is probably a hindrance (aerotech Mitsubishi  Automation-direct)
what i want to do is to create something so when i
activate a M-code or ????
i can run a program to look at a input( input#2 )
then activate a air cylinder( output#5 ) then
once the air cyl is forward see the next input
( input#1 ) and shut off the output

M22.m1s

Do
If Not (getoemled(821))Then
End If
If (getoemled(821)) Then activatesignal(output5)
Loop
Do
If Not (getoemled(822))Then
End If
If (getoemled(822)) Then deactivatesignal(output5)
Loop
Do
If Not (getoemled(821))Then
End If
If (getoemled(821)) Then Exit Do
Loop

Thanks Robin

Pages: 1