Esempio n. 1
0
        public async Task <bool> init()
        {
            if (!string.IsNullOrEmpty(adapterId))
            {
                Instance = await BlueZManager.GetAdapterAsync(adapterId);

                return(true);
            }
            else
            {
                var adapters = await BlueZManager.GetAdaptersAsync();

                if (adapters.Count == 0)
                {
                    throw new Exception("No Bluetooth adapters found.");
                }

                Instance = adapters.First();
            }

            var adapterPath = Instance.ObjectPath.ToString();
            var adapterName = adapterPath.Substring(adapterPath.LastIndexOf("/") + 1);

            Console.WriteLine($"Using Bluetooth adapter {adapterName}");
            return(true);
        }
Esempio n. 2
0
        private static async Task Main(string[] args)
        {
            if (args.Length < 1 || args.Length == 3)
            {
                Console.WriteLine("Usage: subscribeToCharacteristic <deviceAddress>|<deviceNameSubstring> [adapterName] [serviceUUID characteristicUUID]");
                Console.WriteLine(@"Examples:
  subscribeToCharacteristic phone
  subscribeToCharacteristic 8C:8E:F2:AB:73:76 hci0 CAFE CFFE (see https://github.com/hashtagchris/early-iOS-BluetoothLowEnergy-tests/tree/master/myFirstPeripheral)");
                Console.WriteLine();
                Console.WriteLine($"Default service:        {DefaultServiceUUID}");
                Console.WriteLine($"Default characteristic: {DefaultCharacteristicUUID}");
                return;
            }

            s_deviceFilter = args[0];

            Adapter adapter;

            if (args.Length > 1)
            {
                adapter = await BlueZManager.GetAdapterAsync(args[1]);
            }
            else
            {
                var adapters = await BlueZManager.GetAdaptersAsync();

                if (adapters.Count == 0)
                {
                    throw new Exception("No Bluetooth adapters found.");
                }

                adapter = adapters.First();
            }

            s_serviceUUID = BlueZManager.NormalizeUUID(args.Length > 3
        ? args[2]
        : DefaultServiceUUID);

            s_characteristicUUID = BlueZManager.NormalizeUUID(args.Length > 3
        ? args[3]
        : DefaultCharacteristicUUID);

            var adapterPath = adapter.ObjectPath.ToString();
            var adapterName = adapterPath.Substring(adapterPath.LastIndexOf("/") + 1);

            Console.WriteLine($"Using Bluetooth adapter {adapterName}");

            adapter.PoweredOn   += adapter_PoweredOnAsync;
            adapter.DeviceFound += adapter_DeviceFoundAsync;

            Console.WriteLine("Waiting for events. Use Control-C to quit.");
            Console.WriteLine();
            await Task.Delay(-1);
        }
Esempio n. 3
0
        public async Task <IBluetoothAdapter> GetAdapterAsync(string name)
        {
            IBluetoothAdapter adapter = null;

            if (name != null)
            {
                var dnbAdapter = await BlueZManager.GetAdapterAsync(name);

                adapter = new DotNetBlueZAdapter(dnbAdapter);
            }
            else
            {
                var adapters = await BlueZManager.GetAdaptersAsync();

                if (adapters.Count > 0)
                {
                    adapter = new DotNetBlueZAdapter(adapters.First());
                }
            }
            return(adapter);
        }
Esempio n. 4
0
        static async Task Main(string[] args)
        {
            if (args.Length < 1 || args.Length > 2 || args[0].ToLowerInvariant() == "-h" || !int.TryParse(args[0], out int scanSeconds))
            {
                Console.WriteLine("Usage: DotNetBlueZTest1 <SecondsToScan> [adapterName]");
                Console.WriteLine("Example: DotNetBlueZTest1 15 hci0");
                return;
            }

            var adapterName = args.Length > 1 ? args[1] : DefaultAdapterName;
            var adapter     = await BlueZManager.GetAdapterAsync(adapterName);

            // Scan briefly for devices.
            Console.WriteLine($"Scanning for {scanSeconds} seconds...");

            using (await adapter.WatchDevicesAddedAsync(async device => {
                // Write a message when we detect new devices during the scan.
                string deviceDescription = await GetDeviceDescriptionAsync(device);
                Console.WriteLine($"[NEW] {deviceDescription}");
            }))
            {
                await adapter.StartDiscoveryAsync();

                await Task.Delay(TimeSpan.FromSeconds(scanSeconds));

                await adapter.StopDiscoveryAsync();
            }

            var devices = await adapter.GetDevicesAsync();

            Console.WriteLine($"{devices.Count} device(s) found.");

            foreach (var device in devices)
            {
                await OnDeviceFoundAsync(device);
            }
        }
Esempio n. 5
0
        protected static async Task <IDevice1?> ScanAndConnectInternal(ScanFilter filter,
                                                                       TimeSpan?timeout = null,
                                                                       string?adapter   = null)
        {
            // Default value
            if (timeout == null)
            {
                timeout = TimeSpan.FromSeconds(10);
            }
            try
            {
                IAdapter1?a;
                if (adapter == null)
                {
                    var adapters = await BlueZManager.GetAdaptersAsync();

                    if (adapters.Count == 0)
                    {
                        Log.Error("No Bluetooth adapters found.");
                        throw new BleDeviceError("No Bluetooth adapters found.");
                    }

                    a = adapters.First();
                }
                else
                {
                    a = await BlueZManager.GetAdapterAsync(adapter);
                }

                var adapterPath = a.ObjectPath.ToString();
                var adapterName = adapterPath.Substring(adapterPath.LastIndexOf("/", StringComparison.Ordinal) + 1);
                Log.Debug($"Using Bluetooth Adapter {adapterName}.");

                var devices = await a.GetDevicesAsync();

                foreach (var device in devices)
                {
                    var properties = await device.GetAllAsync();

                    var deviceDescription = await GetDeviceDescriptionAsync(device, properties);

                    Log.Debug(deviceDescription);
                    if (await CheckAndConnect(filter, device))
                    {
                        return(device);
                    }
                }

                Log.Debug($"{devices.Count} device(s) found ahead of scan.");

                // Scan for more devices.
                Log.Debug($"Scanning for {timeout.Value.Seconds} seconds...");

                IDevice1?device1     = null;
                var      tokenSource = new CancellationTokenSource();
                using (await a.WatchDevicesAddedAsync(async device =>
                {
                    var deviceProperties = await device.GetAllAsync();
                    var deviceDescription = await GetDeviceDescriptionAsync(device, deviceProperties);
                    Log.Debug($"[NEW] {deviceDescription}");
                    if (!await CheckAndConnect(filter, device))
                    {
                        return;
                    }
                    device1 = device;
                    Log.Debug("Stopping scan...");
                    tokenSource.Cancel();
                }))
                {
                    Log.Debug("Starting scanning...");
                    await a.StartDiscoveryAsync();

                    await Task.Delay(TimeSpan.FromSeconds(timeout.Value.Seconds), tokenSource.Token);

                    await a.StopDiscoveryAsync();

                    Log.Debug("Scan complete.");
                }

                if (device1 != null)
                {
                    return(device1);
                }

                Log.Warning("Device not found.");
            }
            catch (Tmds.DBus.DBusException e)
            {
                Log.Warning($"Error: {e.ErrorMessage}.");
            }

            return(null);
        }
Esempio n. 6
0
    static async Task Main(string[] args)
    {
        if (args.Length < 1)
        {
            Console.WriteLine("Usage: PrintDeviceInfo <deviceAddress> [adapterName]");
            Console.WriteLine("Example: PrintDeviceInfo AA:BB:CC:11:22:33 hci1");
            return;
        }

        var deviceAddress = args[0];

        IAdapter1 adapter;

        if (args.Length > 1)
        {
            adapter = await BlueZManager.GetAdapterAsync(args[1]);
        }
        else
        {
            var adapters = await BlueZManager.GetAdaptersAsync();

            if (adapters.Count == 0)
            {
                throw new Exception("No Bluetooth adapters found.");
            }

            adapter = adapters.First();
        }

        var adapterPath = adapter.ObjectPath.ToString();
        var adapterName = adapterPath.Substring(adapterPath.LastIndexOf("/") + 1);

        Console.WriteLine($"Using Bluetooth adapter {adapterName}");

        // Find the Bluetooth peripheral.
        var device = await adapter.GetDeviceAsync(deviceAddress);

        if (device == null)
        {
            Console.WriteLine($"Bluetooth peripheral with address '{deviceAddress}' not found. Use `bluetoothctl` or Bluetooth Manager to scan and possibly pair first.");
            return;
        }

        Console.WriteLine("Connecting...");
        await device.ConnectAsync();

        await device.WaitForPropertyValueAsync("Connected", value : true, timeout);

        Console.WriteLine("Connected.");

        Console.WriteLine("Waiting for services to resolve...");
        await device.WaitForPropertyValueAsync("ServicesResolved", value : true, timeout);

        var servicesUUID = await device.GetUUIDsAsync();

        Console.WriteLine($"Device offers {servicesUUID.Length} service(s).");

        var deviceInfoServiceFound = servicesUUID.Any(uuid => String.Equals(uuid, GattConstants.DeviceInformationServiceUUID, StringComparison.OrdinalIgnoreCase));

        if (!deviceInfoServiceFound)
        {
            Console.WriteLine("Device doesn't have the Device Information Service. Try pairing first?");
            return;
        }

        // Console.WriteLine("Retrieving Device Information service...");
        var service = await device.GetServiceAsync(GattConstants.DeviceInformationServiceUUID);

        var modelNameCharacteristic = await service.GetCharacteristicAsync(GattConstants.ModelNameCharacteristicUUID);

        var manufacturerCharacteristic = await service.GetCharacteristicAsync(GattConstants.ManufacturerNameCharacteristicUUID);

        int characteristicsFound = 0;

        if (modelNameCharacteristic != null)
        {
            characteristicsFound++;
            Console.WriteLine("Reading model name characteristic...");
            var modelNameBytes = await modelNameCharacteristic.ReadValueAsync(timeout);

            Console.WriteLine($"Model name: {Encoding.UTF8.GetString(modelNameBytes)}");
        }

        if (manufacturerCharacteristic != null)
        {
            characteristicsFound++;
            Console.WriteLine("Reading manufacturer characteristic...");
            var manufacturerBytes = await manufacturerCharacteristic.ReadValueAsync(timeout);

            Console.WriteLine($"Manufacturer: {Encoding.UTF8.GetString(manufacturerBytes)}");
        }

        if (characteristicsFound == 0)
        {
            Console.WriteLine("Model name and manufacturer characteristics not found.");
        }

        await device.DisconnectAsync();

        Console.WriteLine("Disconnected.");
    }
Esempio n. 7
0
        static async Task Main(string[] args)
        {
            if (args.Length < 1 || args.Length > 2 || args[0].ToLowerInvariant() == "-h" || !int.TryParse(args[0], out int scanSeconds))
            {
                Console.WriteLine("Usage: scan <SecondsToScan> [adapterName]");
                Console.WriteLine("Example: scan 15 hci0");
                return;
            }

            IAdapter1 adapter;

            if (args.Length > 1)
            {
                adapter = await BlueZManager.GetAdapterAsync(args[1]);
            }
            else
            {
                var adapters = await BlueZManager.GetAdaptersAsync();

                if (adapters.Count == 0)
                {
                    throw new Exception("No Bluetooth adapters found.");
                }

                adapter = adapters.First();
            }

            var adapterPath = adapter.ObjectPath.ToString();
            var adapterName = adapterPath.Substring(adapterPath.LastIndexOf("/") + 1);

            Console.WriteLine($"Using Bluetooth adapter {adapterName}");

            // Print out the devices we already know about.
            var devices = await adapter.GetDevicesAsync();

            foreach (var device in devices)
            {
                string deviceDescription = await GetDeviceDescriptionAsync(device);

                Console.WriteLine(deviceDescription);
            }
            Console.WriteLine($"{devices.Count} device(s) found ahead of scan.");

            Console.WriteLine();

            // Scan for more devices.
            Console.WriteLine($"Scanning for {scanSeconds} seconds...");

            int newDevices = 0;

            using (await adapter.WatchDevicesAddedAsync(async device => {
                newDevices++;
                // Write a message when we detect new devices during the scan.
                string deviceDescription = await GetDeviceDescriptionAsync(device);
                Console.WriteLine($"[NEW] {deviceDescription}");
            }))
            {
                await adapter.StartDiscoveryAsync();

                await Task.Delay(TimeSpan.FromSeconds(scanSeconds));

                await adapter.StopDiscoveryAsync();
            }
            Console.WriteLine($"Scan complete. {newDevices} new device(s) found.");
        }