How To Specify Inlet in JavaScript?

ComfortableInClouds's icon

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.

Luke Hall's icon

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.

ComfortableInClouds's icon

nice, thanks.