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

Would be useful to have characteristic descriptions available, but the two current description calls return GATTLIB_NOT_SUPPORTED: ``` int gattlib_discover_desc_range(gatt_connection_t* connection, int start, int end, gattlib_descriptor_t** descriptors, int* descriptor_count) { return...

I'm trying to use gattlib on archlinux (specifically, on a pikvm.) This is the error I get trying to import the library (used by https://github.com/OpenWonderLabs/python-host): ``` # python3 switchbot_py3.py Traceback...

When building with `cmake -DGATTLIB_SHARED_LIB=NO ..` gives this error ``` CMake Error at dbus/CMakeLists.txt:127 (install): install TARGETS given no ARCHIVE DESTINATION for static library target "gattlib". ``` modifying dbus/CMakeLists.txt;127 to...

Hello, I am trying to implement a Bluetooth functionality to pass on wifi information for my IoT device to connect to the internet (Rpi 4B+, Pi OS Bullseye, and program...

When i use connection = gattlib_connect(NULL, address, GATTLIB_CONNECTION_OPTIONS_LEGACY_DEFAULT); it takes about 4 seconds to connect. When i use the bluetoothctl utility it takes less than 2 seconds. time bluetoothctl connect...

I'm using the notification example on a **BLE sensor streaming a value at 25Hz** (I verified this value was correct by other means). The connection and printing works alright, but...

If my device sends notifications, gattlib cannot catch but if my device sends indications, gattlib catches them as notifications It's completely weird. but probably you sent CCCD 0200 instead 0100...

With a current clone of gattlib (last check-in Wed Jun 9 17:41:20 2021 +0200) on a Raspberry Pi 4 running the 64 bit Raspberry Pi OS, the documentation build is...

In Ubuntu 20, I try using "write without response" and in response turning LED connected to the Bluetooth device RN4871(microchip). All works well. The issue is if I do multiple...

Hi, I am using gattlib_write_char_by_uuid to write to a write no response characteristic, on a device running BlueZ 5.50 and I am seeing incredibly long delays between writes, 360-420ms typically,...