Robert Ancell
Robert Ancell
I've been looking at integrating with [flutter_reactive_ble](https://github.com/PhilipsHue/flutter_reactive_ble/pull/347) but not making good progress. Thanks for the hint about quick_blue.
That's awesome! I'll have a look and see if I can reproduce the same issues. Because Bluetooth can sometimes be hard to debug I've found the best method is to...
There might be an issue here: ```dart void connect(String deviceId) async { await initBluez(); final device = _getDeviceWithId(deviceId); if (device == null) { throw 'No such device $deviceId'; } else...
I've just released [bluez 0.7.8](https://pub.dev/packages/bluez/versions/0.7.8) which has support for subscription (use BlueZGattCharacteristic.startNotify and subscribe for changes to the 'Value` property. I'm working on getting data as a stream and MTU...
You want something like this: ```dart characteristic.propertiesChanged.listen((names) { if (names.contains ('Value')) { handleValue(characteristic.value); } }); handleValue(characteristic.value); characteristic.startNotify(); ``` But we should really add a helper method to automatically make a...
See the [BlueZ documentation](https://github.com/bluez/bluez/blob/master/doc/gatt-api.txt) for more information on the GATT API. Over time I would like to see bluez.dart improved so that you don't have to refer to that, but...
The stack trace would indicate this is a driver bug, though of course it could be a bug in the way GTK or Flutter is rendering, though this seems unlikely...
[Launchpad bug](https://bugs.launchpad.net/snapd/+bug/1995370)
> after thinking a bit, as this has no clear equivalent `snap` command, my preference would be introduce this as `is-connected --list` instead of a fully separate new command This...
Was noticed in https://gitlab.gnome.org/GNOME/gnome-software/-/issues/2484