11-14-2012 02:46 PM - edited 11-14-2012 02:48 PM
Aalenox wrote:
I hadn't considered an array of controls before. Any good examples you'd consider going over?
Arrays of buttons are generally useful because they greatly simplify the diagram. Only one terminal and wire instead of e.g. 16. This is independent of the architecture you'll be using. It workes equally well with other design patterns.
Here's a very primitive example (LV2012) showing you how to deal with an array of four buttons, two are switch action and two are latch. In the timeout case we loop over all buttons and act accordingly. This could easily be done in a parallel loop if needed.
11-14-2012 02:59 PM
Thank you! This will help - especially combined with producer / consumer architecture.