/// Disconnect from the active handheld controller device.
    public void DisconnectService()
    {
        if (!IsBridgeInitialized)
        {
            return;
        }

        _controllerPlugin.DisconnectService();

        SetBLEState(BLEStates.inactive);
    }