I'm building a C# program using the RXscanMode to receive multiple ANT+ devices over multiple ANT USB sticks. So far no problems and all seems to work smooth.
But I also like to use the AntPlus.Profiles lib to decode standard ANT+ devices.
And this is my challenge, the constructor of the i.e. BikePowerDisplay likes to receive a AntChannel.
I can refer to CH0 where the RXscanMode(with devicenumber set to wildcard) puts it's data but the BikePowerDisplay will decode all data of all received devices because there is no ability to set the ExtDeviceNumber.
I haven't figured out a way to filter out the right device and use the BikePowerDisplay at the same time.
(The alternative is to manual filter out the right device type ,ExtDeviceNumber ,page number and decode the data but then I'm basically building another AntPlus.Profiles lib.)