You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I spent a long time today troubleshooting because I put the service and characteristic argument backwards. The strong type system is something you can rely on.
The text was updated successfully, but these errors were encountered:
Hey! This is not a bad idea! This requires a bit of care to ensure we don't break all existing use cases, but I'll definitely take it into consideration.
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 const& data) noexcept;
I spent a long time today troubleshooting because I put the service and characteristic argument backwards. The strong type system is something you can rely on.
The text was updated successfully, but these errors were encountered: