universal_ble icon indicating copy to clipboard operation
universal_ble copied to clipboard

Windows filter with services issue

Open Wicz3k opened this issue 5 months ago • 7 comments

On ios and android if i set list of services to scan ScanFilter like that:

List<String> allScanningServices = [
        "0000fae5-0000-1000-8000-00805f9b34fb",
        "6e400001-b5a3-f393-e0a9-e50e24dcca9e",
      ];

UniversalBle.startScan(
  scanFilter: ScanFilter(
    withServices: allScanningServices 
  ),
)

Application accept all devices which got any of listed services. But on windows it get device only if there is one service in list, and device got this service (i do not tried when device has all services from list). I need to find devices with any of these services, but olnly way on windows is to scan without this filter. This issue is in library since I remember.

Wicz3k avatar Oct 03 '24 12:10 Wicz3k