01-20-2010 10:58 PM
01-20-2010 11:02 PM
Thanks. This is what I have so far but I don't know what I am supposed to put in the T and F terminals.
01-20-2010 11:14 PM
01-20-2010 11:19 PM
Ok. But I want the output to be the LED so that would mean the inputs would have to be a boolean as well and according to the picture that is not the case.
01-20-2010 11:21 PM
The select comparison is like a gate. If the condition is True, then pass through whatever is in the True input to the output of the function. If the condition is False, then pass through whatever is wired to the False input to the output of the function. It could be a datatype of any kind, a number, a string, a boolean. Since you want the output to be a boolean, then you wire a boolean to the True input and a boolean to the False output.
However, in its simplest form, it is a ridiculous construction and is highlighted in an early post in the Rube Goldberg thread here.
01-20-2010 11:26 PM