Results 440 comments of bilogic

Hi, Yes, it is PlatformIO but using the ```Espressif 32``` platform 1.7.0 (aka arduino framework) which says IDF 3.1.3 in its changelog.

I just upgraded ```Espressif 32``` to 1.8.0 which uses IDF 3.2.0, the code remains working with the BP monitor.

I have shared my code here https://github.com/bilogic/esp32-ble See if it works on your device. You need to replace ```serviceUUID``` and ```charUUID``` in ```main.cpp```

Hi, I have trouble compiling your latest code. I have followed https://github.com/shmuelzon/esp32-ble2mqtt/issues/31 and place the 2 files in ```/main``` It continues to show this: ``` ... Traceback (most recent call...

~I also looked through your last commit. I could not see anything that might have fixed the "No ESP_GATTC_NOTIFY_EVT received" issue. What's changed? Thank you.~ Just saw it. Thanks.

Hi, I don't think this commit https://github.com/shmuelzon/esp32-ble2mqtt/commit/6d307b3b65dfe2d3294a3ea9a325c0557ca9ebae?diff=unified solves the problem. My ```ble_characteristic_notify_register()``` has a variant of your fix but still facing the issue. I also do not see any difference...

In terms of logs, the one difference I see is the numerous ```ESP_GAP_BLE_SCAN_RESULT_EVT``` from ```esp32-ble2mqtt``` in contrast to my working code. I'm unsure if the code under ```case ESP_GAP_BLE_SCAN_RESULT_EVT:``` might...

> BTW - With your code, does it still work if you register on all the characteristics that support notifications/indications as I do? I did not do this as I...

> Why do you think that the code for `ESP_GAP_BLE_SCAN_RESULT_EVT` would interfere with the `ESP_GATTC_NOTIFY_EVT`? It is just pure speculation on my part based on the log differences and due...

I tried ```ESP_GATT_WRITE_TYPE_NO_RSP``` previously and the logs showed a new error, ```ESP_GATTC_NOTIFY_EVT``` was still not received, so I stopped pursuing. I still have trouble compiling your latest code, something about...