LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Can clusters be replaced by unbundle,bundle functions so that my prgm turns PDA compatible.

I've used clusters ( cluster of buttons as control) in my prgm. I want to run my prgm in a PDA, unfortunately clusters are not supported by PDAs. I got many responses with programming using event structures. However I do not get the desired output when using event structres. can I get help to make the same program run in a PDA by using bundle and unbundle function or any other ?
0 Kudos
Message 1 of 3
(3,095 Views)
Why are you using clusters at all. You just could use three single buttons and handle them as array or if you have to bundle them programmatically in an array.

greetz
Chris
0 Kudos
Message 2 of 3
(3,095 Views)
I'm not sure why you don't think an event structure won't work but if you're not comfortable doing that, you can simply remove your Booleans from the cluster and build them into an array. You're converting the cluster to an array and doing a search of the array to see which button is true so why not skip the initial cluster part. I think you could also skip some or all the writing to the cluster with a local variable if you used a different mechanical action for the buttons.
0 Kudos
Message 3 of 3
(3,095 Views)