Hi,
don't think its gona work in macropump because you have to create a rising edge of the input.
this may work:
If not IsActive (Input1) = True Then
LED = GetOEMLED(78) ' LED looks at state of Output 5 LED
End If
If IsActive (Input1) And LED = True Then ' looking at input 1 and LED of Output 5
DeActivateSignal (OutPut5)
Else
If IsActive (Input1) And LED = False Then
ActivateSignal (OutPut5)
End If
End If
made a small document how it should work, not the easy way, but it's working here.
sorry for the german windows, but you should find them in the english version.
Thomas