01-09-2015 09:36 AM
Am doing a GUI Based project for the Calibration System of Flow Meters and in this i need to control the Quick Acting Valves, In my Programming i am Using stacked sequences and in several sequences am using boolean constants to give signals to the hardware module for opening and closing of valves.At this same time i need to display this actions in the boolean in my front panel.i need to feed my output from constants to same Valve Boolean Indicators for multiple times at various sequences. I couldnt feed this out of Stacked Sequence for Multiple times.Please explain.
01-09-2015 09:39 AM
Hi aswin,
to discuss LabVIEW programming problems you should post in the LabVIEW discussion forum.
After you have done this you will receive a lot of help messages. The main conclusion will be to convert your stacked sequence into a proper state machine! Once you have done so you can easily display the current state of your valves in FP indicators…
01-09-2015 09:46 AM
Gerd is right,
go to labview discussions.
but quick here:
The valves should give a feedback if they are Open or Closed. You do not want to show if the program (or the operator) gave a Command but the Real State.
If you do think it is necessary, a simple two state bool won't do. The system-type controls have a mixed indicator or you can build your own.
Good luck, Gabi
01-09-2015 12:42 PM
Use a local variable.
01-12-2015 09:03 AM
thank you all\