I'm having an issue where I have a latch on my front panel. I'm passing the button by reference to by sub vi where it read and then write the value of bool.
To describe it better, if the button is pressed down, I want my sub VI is do something (long computation). After the computation is down, I want to button to pop back up so the user can click it again
The entire VI is running on parallel processes (multiple while loops). Labview of course won't let me pass the button as reference when it's acting like a latch, and I was wondering what should I do? If I replace the mechanical action with a switch, not all the user's action gets registered. How do I get around this? Thanks.