Hello Guest it is March 28, 2024, 05:30:55 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 - RooT21

Pages: 1
1
VB and the development of wizards / Re: VBscript
« on: January 25, 2013, 04:41:50 AM »
Yes I was thinking about A-axis.
My machine uses a 4-axis in the tangential mode.
Is it possible to write a VB script to turn off relay when moving the A-axis, and the relay turns on again when the A-axis is not moving.

I was thinking, for example:
when using OEM DRO 809 (showing velocity) to turn off relay , when not in use OEM DRO 809 the turn on the relay.

2
VB and the development of wizards / Re: VBscript
« on: January 24, 2013, 12:24:37 PM »
thanks now it works.

I have another question whether it is possible to write a VBScript:
1. When the axis moving the turn off relay (output1)
2. When the axis is not moving the turn on relay (output1)

3
VB and the development of wizards / VBscript
« on: January 23, 2013, 12:25:23 PM »
Hello
I need a VBScript which turned off OUTPUT 1 (spindle relay)  when activated input 1

I tried two ways but no result:
1.
ActivateSignal(OUTPUT1)
If Not(IsActive(INPUT13)) Then
DeActivateSignal(OUTPUT1)
If (IsActive(INPUT13)) Then
End If
ActivateSignal(OUTPUT1)
If (IsActive(INPUT13)) Then
End If
DeActivateSignal(OUTPUT1)
If Not(IsActive(INPUT13)) Then
End If
End If

2.
DoSpinCW()
Message "Spindle Start Requested"
ActivateSignal(OUTPUT4)
DoSpinStop()
Message "Spindle Stop"
IsActive(INPUT1)




4
General Mach Discussion / Tangential control A-axis and relay
« on: January 18, 2013, 07:28:37 AM »
I'm new in using the Mach3.I have 4-axis machine and use the tangential control for the rotation A-axis.
On the A-axis is installed electric tool which turns on/off relay.
I'm interested whether in the Mach3 can be set to pause relay and waiting until A-axis is not set up in position.

Pages: 1