pygatt icon indicating copy to clipboard operation
pygatt copied to clipboard

Python wrapper for gatttool (a deprecated tool from BlueZ) and the BGAPI for accessing Bluetooth LE Devices

Results 30 pygatt issues
Sort by recently updated
recently updated
newest added

I am not sure if this platform supports android? Please clerify.

A `ExpectedResponseTimeout` exception is being thrown when conducting the following test: 1. Connect to a BLE device (using the BGAPI backend) 2. Subscribe to a characteristic 3. Subscribe to a...

Hello! I'm connecting to a BLE Smart Remote https://www.amazon.es/CCsky-Bluetooth-Wireless-SmartRemote-Compatible/dp/B07BTSHKCG and I discover this charasteristics: ``` Read UUID 00002a4d-0000-1000-8000-00805f9b34fb: b'0000000000000000' Read UUID 00002a4c-0000-1000-8000-00805f9b34fb: b'00' Read UUID 00002a19-0000-1000-8000-00805f9b34fb: b'64' Read UUID 00002a01-0000-1000-8000-00805f9b34fb:...

As of commit 949eafe in file [pygatt/device.py](https://github.com/peplin/pygatt/commit/949eafe0e895eb0ab9555bdfb6afd77aab54de25#diff-c3fb5e60ed9c5192c4d9ed63b25afa6c29100543ecccb7d148f804061222c203) def exchange_mtu(self, mtu): """ ATT exchange Maximum Transmission Unit. :param mtu: New MTU-value :return: New MTU, as recognized by server. """ raise NotImplementedError()...

wrong place: bgapi.py line 551, in _scan_rsp_data constants.scan_response_data_type[field_value[0]])

On slackware64-current with a USB bluetooth dongle. I have been using the trionesControl python module to control an LED strip. When running from a terminal everything runs and exits fine....

In Gatttol Backend, a reconnecting variable is needed to know what the adapter is disconnected but trying reconnection.

Hi, everyone! I tried to connect my raspberry pi to Arduino BLE sense using `pygatt`, unfortunately something weird happened. With the **code block 1**, I can subscribe to one of...

What would be the pygatt equivalent to running: ``` sudo gatttool -t random -b D2:C5:26:66:6C:7D --char-write-req -a 0x2f -n 03170101 ``` So far in python I have, I am struggling...

I have successfully connected my BLE device (ESP32 board + IMU) to my windows pc using PyGATT library and I can receive data from the IMU.. However, I receive the...