I think you misunderstood my question.
I am a seasoned LabVIEW programmer,and I know you can't interact with hardware within a formula node. I was simplifying the explanation of what I'm trying to do.
My customer wants to be able to input, at his discretion, trigger points as to when data will be written to a file. Therefore, he wants to be able to enter something along the lines of:
If temp1 > 200 or temp2 > 300 then write acquisition data to a file.
I'd create a formula node to handle the conditional, with a 0 or 1 coming out of the formula node, change that to False (0) or True (1), and use that boolean to drive whether or not to write data.
However, the conditional is not the same for every test. Therefore, using the formula node l
ike you attached, is not the answer, as I stated in my first post. With that formula node, you have to pre-define the inputs, outputs, and formula; I can't do that. Therefore, I need to use a VI called "Eval Formula Node", which allows you to dynamically enter the inputs, outputs, and the formula.
The Eval Formula Node VI doesn't allow the use of conditionals (greater than, less than, equal to, OR, AND, etc), so now I don't know how to solve this.
Hard coding the wiring into LabVIEW isn't an option, since there are so many combinations that could occur, it would be impossible.