We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98f8fc0 commit 9c6a3ddCopy full SHA for 9c6a3dd
1 file changed
BrickController2/BrickController2.iOS/PlatformServices/BluetoothLE/BluetoothLEService.cs
@@ -29,7 +29,7 @@ public BluetoothLEService()
29
}
30
31
public Task<bool> IsBluetoothLESupportedAsync() => Task.FromResult(true);
32
- public Task<bool> IsBluetoothLEAdvertisingSupportedAsync() => Task.FromResult(false); // Not supported yet - has to be implemented
+ public Task<bool> IsBluetoothLEAdvertisingSupportedAsync() => Task.FromResult(true);
33
public Task<bool> IsBluetoothOnAsync() => Task.FromResult(_centralManager.State == CBManagerState.PoweredOn);
34
public async Task<bool> ScanDevicesAsync(Action<ScanResult> scanCallback, CancellationToken token)
35
{
0 commit comments