Assaf Inbal
Assaf Inbal
Hey, The configuration you're using is, pretty much, what can be done right now. I'm using Home Assistant to extract the comma-separated values with something like what's described [here](https://community.home-assistant.io/t/need-help-with-template-sensor-extracting-3rd-comma-seperated-value-of-an-attribute/138232/5). I...
Hey, It seems that the GATT discovery didn't complete, otherwise I would have expected to see more characteristics. The flow is usually to read all of the characteristics and for...
Hey, I was actually referring to Component config -> Log output -> Default log verbosity -> Debug. In the logs I see a stack overflow from the BLE task but,...
Hey, Could you please try to apply the following patch and check if it helps? ```patch diff --git a/main/ble.c b/main/ble.c index fd9b919..0d0c707 100644 --- a/main/ble.c +++ b/main/ble.c @@ -153,7 +153,7...
Glad to hear it helped! Please let me know, after the weekend, if everything is as expected and I'll commit the change. > I used ESP_GATT_WRITE_TYPE_RSP instead since "_RSP" was...
Well, to be honest, I don't see any issue here. These are the characteristics that were found: ``` 00002a00-0000-1000-8000-00805f9b34fb READ -> SWAN 00002a01-0000-1000-8000-00805f9b34fb READ -> 0 00002a02-0000-1000-8000-00805f9b34fb READ WRITE ->...
Hey, Values aren’t sent in HEX. If you didn’t configure the `0000ffb1-0000-1000-8000-00805f9b34fb` characteristic and define its type, the the default is comma-separated bytes, in decimal. So you should try to...
Hey, that's a new one :) I think that's it's because of the logs though that are disabled by default. See https://esp32.com/viewtopic.php?t=1459#p6626. If you want to keep them, you might...
Hey, `0000ffb2-0000-1000-8000-00805f9b34fb` supports only notifications. That means that it doesn't subscribe to something like `03:b3:ec:8d:f0:f1/Scale/0000ffb2-0000-1000-8000-00805f9b34fb/Set` as it's not writeable. If I can't write values to it, there is no reason...
@davidkipstar, I've updated the project to support the latest ESP-IDF release, v4.1. Could you please try to compile it and see if perhaps it works as expected there?