spikeyamk
spikeyamk
Expected Behavior I was trying to write a certain state that doesn't listen to incoming events for some time and just ignores them. I was trying to either use a...
Peripheral::address() returns a lowercase std::string in Windows and uppercase in Linux.
I'm using an ESP32 and SimpleBLE and can't seem to change the MTU value which is by default set to 23 with NimBLE and I'm sure the client should be...
``` char buf[BUFSIZ]; int create_test_file(const size_t size_bytes, const std::string_view& name) { const std::filesystem::path test_megabyte { std::filesystem::path(mount_point).append(name) }; FILE* file { std::fopen(test_megabyte.c_str(), "w") }; std::setbuf(file, buf); if(file == nullptr) { return...
Hello current function signature is this: ```bool write_request(BluetoothUUID const& service, BluetoothUUID const& characteristic, ByteArray const& data) noexcept;``` Could this be changed to ```bool write_request(Service const& service, Characteristic const& characteristic, ByteArray...