Kevin Dewald
Kevin Dewald
Some functions just fail silently instead of returning an error. It's better if all functions are able to return error codes.
I'm not happy with the current linting, I'll make it better.
The following code block gets repeated a lot, it can probably be simplified and unit-tested. ``` std::string identifier = peripheral->identifier().value_or(""); char* c_identifier = (char*)malloc(identifier.size() + 1); strcpy(c_identifier, identifier.c_str()); return c_identifier;...
### Discussed in https://github.com/OpenBluetoothToolbox/SimpleBLE/discussions/150 Originally posted by **Dharani3110** December 19, 2022 I am able to execute write.py example of SimplepyBle. But running read.py example throws the below error.  Please...
### Package name simplepyble ### Package version all ### PyPI URL https://pypi.org/project/simplepyble/ ### piwheels URL https://www.piwheels.org/project/simplepyble/ ### Python version - [X] Python 3.7 - [X] Python 3.9 ### I am...
Connecting to some devices takes more than the 2 seconds of timeout, we need to increase that number.