Blex.f10-solutions 1.0.2

dotnet add package Blex.f10-solutions --version 1.0.2
NuGet\Install-Package Blex.f10-solutions -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Blex.f10-solutions" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Blex.f10-solutions --version 1.0.2
#r "nuget: Blex.f10-solutions, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Blex.f10-solutions as a Cake Addin
#addin nuget:?package=Blex.f10-solutions&version=1.0.2

// Install Blex.f10-solutions as a Cake Tool
#tool nuget:?package=Blex.f10-solutions&version=1.0.2

Blex

Why Blex?

Blex is a Xamarin Bluetooth plugin. It has been design to port native Bluetooth Low Energy (a.k.a Bluetooth 4.0) capacities of Android and iOS into the Xamarin cross platform world. The result is a Task based API that leverage CoreBlueetooth for iOS and BluetoothAdapter for Android, supporting device back to Jellybeans or iOS 6.

Blex can work both with Xamarin Native project and Xamarin Form. It's main feature are :

  • Scanning for nearby device(s), filtering based on the advertised data and the rssi level.
  • Handling connection / disconnection event
  • Gatt discovery
  • Subscribtion to bluetooth notification on Gatt Characteristics
  • Allowing encryption/decryption of the packets sent/received

Those features turn Blex into an ideal librairy to make companion app for IoT project.

How do I install

Blex is ship as an official nugget package.

How does it work?

First, you will need to create an instance of the BluetoothHandler. The methods change on iOS or Android, but both iOS and Android bluetooth handler implements the IBluetoothHandler interface so it is easy to create the instances in your platform specific project and access to them from everywhere with an IoC pattern (ServiceLocator or DependencyInjection) In the following snippets, I use the service locator provided in the Splat librairie.

Instaciating BluetoothHandler on Android

The android bluttoth handler requieres an AppContext object. I recommand placing the instanciation in the custom App class.

public class App : Application
{

    public App(IntPtr handle, JniHandleOwnership ownerShip) : base(handle, ownerShip)
    {
    }

    public override void OnCreate()
    {
        base.OnCreate();

        /* ... */

        Locator.CurrentMutable.RegisterLazySingleton(() => new BluetoothHandler(this), typeof(IBluetoothHandler));

    }

}

Instaciating BluetoothHandler on iOS

Following the same idea in iOS, I recommand instanciating the BluetoothHandler in the AppDelegate's FinishLaunching method

public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
{
    // Override point for customization after application launch.
    // If not required for your application you can safely delete this method

    Window = new UIWindow(UIScreen.MainScreen.Bounds);

    /* ... */

    Locator.CurrentMutable.Register(() => new BluetoothHandler(), typeof(IBluetoothHandler));
    
    return true;
}

Scanning for a device (cross-platform)

Scanning is performed using the following API:

  Task<IEnumerable<IScanResult>> Scan(int limit, TimeSpan maxDuration, Predicate<IScanResult> filter,
            string[] uuidsRequiered);

The following snippet looks up for a device exposing a given service UUID and return the first device seen.

protected async Task<IScanResult> ScanFirst(string seekedUUID, int rssiLimit, int timeout) 
{

    var scanResult = await BluetoothHandler.Scan(1, RSSILimit: rssiLimit, maxDuration: timeout, uuidsRequiered: new[] {seekedUUID});

    if (!scanResult.Any())
        throw new Exception("no device matching criteria");

    var d = scanResult.OrderBy(x => x.RSSI).Reverse().First();

    return d;
}

Connecting to a device (cross-platform)

Once a IScanResult object is obtain, The following API handle the connection / disconnection and Connection status change:

#region Connection

/// <summary>
/// A boolean value indicating if an active BLE connection currently exist
/// </summary>
bool IsConnected { get; }

/// <summary>
/// Connect to a given device
/// </summary>
/// <param name="scanResult"> The device to connect to</param>
/// <returns></returns>
Task Connect(IScanResult scanResult);

/// <summary>
/// Disconnect for the currently connected device
/// </summary>
/// <returns></returns>
Task Disconnect();

/// <summary>
/// An event raised when the connection status changed.
/// </summary>
/// <note>
/// As observed when the bluetooth device disconnect itself:
/// on iOS the event is raised instantly
/// on event is raise after a delay up to 20 seconds 
/// </note>
event EventHandler<bool> ConnectionStatusChanged;

#endregion

The following snippet uses the ScanFirst snippet written above to looks for a device (for up to 10 seconds) and connect to it

 protected async Task<bool> Connect()
{
    var uuid = "173ac77c-0235-11eb-adc1-0242ac120002";

    try
    {
        Console.WriteLine("Scanning for devices");
                
        var foundDevice = await ScanFirst(uuid, -100, 10 * 1000);

        await BluetoothHandler.Connect(device);
    }
    finally
    {
        return BluetoothHandler.IsConnected;
    }
}

Discovering GATT (cross-platform)

The following APIs allows for gatt discovery

#region GATT Discovery

/// <summary>
/// This methods discovers the GATT services and characteristic of the connected device
/// </summary>
/// <returns></returns>
Task DiscoverGATT();

/// <summary>
/// Return wether a given characteristic has been discovered
/// </summary>
/// <param name="characteristic"></param>
/// <returns></returns>
bool HasDiscoveredCharacteristics(string characteristic);

#endregion

The following uses the Connect snippet written above and once a connection is established, discover the gatt.

protected async Task Start() 
{

    var connected = await Connect();

    if (connected)
    {
        await BluetoothHandler.DiscoverGatt();
    }
    else
    {
        // no device found or connection failed... It happens sometimes! You can restart the process (maybe up to 3 times)
    }
}

Writing to a characteristic (cross-platform)

The following APIs allows for gatt discovery

#region GATT Discovery

/// <summary>
/// This methods discovers the GATT services and characteristic of the connected device
/// </summary>
/// <returns></returns>
Task DiscoverGATT();

/// <summary>
/// Return wether a given characteristic has been discovered
/// </summary>
/// <param name="characteristic"></param>
/// <returns></returns>
bool HasDiscoveredCharacteristics(string characteristic);

#endregion

The following uses the Connect snippet written above and once a connection is established, discover the gatt.

protected async Task Start() 
{

    var connected = await Connect();

    if (connected)
    {
        await BluetoothHandler.DiscoverGatt();
    }
    else
    {
        // no device found or connection failed... It happens sometimes! You can restart the process (maybe up to 3 times)
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed.  monoandroid10 is compatible. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed.  xamarinios10 is compatible. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.
  • MonoAndroid 0.0

    • No dependencies.
  • Xamarin.iOS 1.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 605 9/29/2020
1.0.1 446 9/29/2020
1.0.0 398 9/29/2020

First release