Skip to content

Commit 9c6a3dd

Browse files
authored
Enable BLE advertising on IOS (#137)
1 parent 98f8fc0 commit 9c6a3dd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

BrickController2/BrickController2.iOS/PlatformServices/BluetoothLE/BluetoothLEService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public BluetoothLEService()
2929
}
3030

3131
public Task<bool> IsBluetoothLESupportedAsync() => Task.FromResult(true);
32-
public Task<bool> IsBluetoothLEAdvertisingSupportedAsync() => Task.FromResult(false); // Not supported yet - has to be implemented
32+
public Task<bool> IsBluetoothLEAdvertisingSupportedAsync() => Task.FromResult(true);
3333
public Task<bool> IsBluetoothOnAsync() => Task.FromResult(_centralManager.State == CBManagerState.PoweredOn);
3434
public async Task<bool> ScanDevicesAsync(Action<ScanResult> scanCallback, CancellationToken token)
3535
{

0 commit comments

Comments
 (0)