Kevin Dewald

Results 48 issues of Kevin Dewald

Some functions just fail silently instead of returning an error. It's better if all functions are able to return error codes.

enhancement

I'm not happy with the current linting, I'll make it better.

enhancement

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;...

enhancement
good first issue

### 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. ![image](https://user-images.githubusercontent.com/46337466/208591592-48dea8f4-9b4a-4a14-8012-9b90edd3f548.png) Please...

enhancement
good first issue

### 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...

upstream issue
package issue

Connecting to some devices takes more than the 2 seconds of timeout, we need to increase that number.

bug