bgapi
bgapi copied to clipboard
A python package for communicating with BlueGiga modules through their proprietary API.
"Read (handle)" is currently implemented and only supports a max payload of 22 bytes. According to Bluegiga documentation "Read Blob (handle, offset)" has a max payload of 64 kBytes. Unless...
when I use bgapi, it returns unknown type error after it properly connected. for example, "UUID 3eb3 is of unknown type". I can connect same device with LightBlue and subscribe...
Version 0.7 is available on PyPi but git tag is missing.
It would be nice not to enforce a BLEScanResponse instance to connect to a remote device. A duck typed tuple such as ``` ScanResp = namedtuple('ScanResp', 'sender, address_type') ``` used...
I am trying to read hardware version number of the ble device: 1. I was able to connect to the device succesfully 2. bond handle is 1 3. able to...
Hi Brown I am getting the No handlers could be found for logger "bgapi", when i tried to execute ur examples.py/ KIndly need ur assist to resolve this issue
It would be great if BlueGigaAPI could be instanciated from an existing Serial instance: ``` class BlueGigaAPI(object): def __init__(self, port, callbacks=None, baud=115200, timeout=1): ``` This would give the opportunity to...
It can be useful to access the local device attributes of a BLE112 device used as a client, such as the firmware_revision (0x2a26) or the device name Unfortunately, the following...
From a BG script, it is possible to define and use custom error codes. Unfortunately, error code is dispatched through a dictionary that triggers an exception for any non-standard error...
# Issue Summary I am facing a problem with my BLE Client's data request to a BLE Server. The issue is related to the `pybgapi` library, and I need assistance...