How To Specify Inlet in JavaScript?
Hi - all js tutorials seem to only use one inlet. If I am using more than one inlet, how do I check to see which inlet the data is arriving through?
Thanks.
You need to query the inlet property which returns a number, the leftmost being inlet 0. Then you can use conditionals or a switch statement.
lh
if (inlet == 0) {
// do stuff
} else if (inlet == 1) {
// do other stuff
} //etc.
nice, thanks.