4

I'm developing on UWP for band. Is there any way to identify a connected band on some serial number/ unique ID or something else. Like i found the connected bands as

IBandInfo[] pairedBands = await BandClientManager.Instance.GetBandsAsync();

If there is not any way then if I can inherit some method with Bluetooth API and identify on the basis of Bluetooth ID. Need help

Asfar Irshad
  • 658
  • 1
  • 4
  • 20

1 Answers1

3

Every Microsoft Band have unique "Serial ID". You can check it in "Setting Tile" > "Device Info".

But there is no method in Microsoft Band SDK to get that number.

For now, the only way to identify Band is Band Name

using Microsoft.Band;

IBandInfo[] pairedBands = await
BandClientManager.Instance.GetBandsAsync();

Using BandClientManager you can get to Band Name.

Kuba
  • 226
  • 1
  • 9