Skip to content

Instantly share code, notes, and snippets.

@shoderico
shoderico / MAUI_Plugin_BLE_CheckBluetoothState.cs
Last active May 6, 2025 05:30
MAUI+Plugin.BLE: CheckBluetoothState
using Plugin.BLE;
using Plugin.BLE.Abstractions.Contracts;
private IBluetoothLE _bluetoothLE;
private async Task<bool> CheckBluetoothState()
{
if (_bluetoothLE.State == BluetoothState.On)
return true;