gattlib icon indicating copy to clipboard operation
gattlib copied to clipboard

Library to access GATT information from BLE (Bluetooth Low Energy) devices

Results 81 gattlib issues
Sort by recently updated
recently updated
newest added

After scan and connect we can get the BLE device object which is broadcasting, then communication with it by `gattlib`, but in some cases, need to communication with an already...

I am using bluez 5.55 on pi zw and for a week I meet the issue "(gatttool: 10161): GLib-WARNING **: 12: 30: 21.482: Invalid file descriptor." I tried to understand...

I had multiple segsev crashes in different locations all over the library. Mostly they seem to stem from instances where the library does just assume that some pointer is still...

I tried a variety of changes for the disconnection handler but not get success. Can I get a small disconnection handler example?

I have problem with running the gattlib nordic_uart.c example on an RPi4B+ using Bluez 5.50. The gattlib is cloned and compiled on the RPi according to the gattlib installation instructions....

This PR is the requested changes from #184. Currently the DBUS implementation for both is effectively synchronous but is a reasonable API to expand async calls into without breaking the...

Currently the read callback doesn't support a user argument, which severely limits it's usefulness. Is there a fundamental reason this isn't possible? If it's helpful I can submit a PR...

I have a C++ command line app that works well using Gattlib to scan for Eddystone beacons and Eddystone-UID advertising data, connect to them, and write to them. I tried...

With multiple Bluetooth adapters connected, trying to connect to a device using the non-default adapter does not work, i.e, gattlib always defaults to using hci0

I managed to circumvent this error by modifying the example thusly: `uint8_t val = value_data & 0xff;` `ret = gattlib_write_char_by_uuid(connection, &g_uuid, &val, sizeof(val));` ...but this only writes one byte. I...