Hello, I am trying this plugin to communicate with ESP32 module via BLE on IOS. The plugin connects to device, i receve a ‘device paired’ event in listenerBT(event) function but then there is no way to receive any mesage. The ESP32 sends data trough notification:
char Message[8] = {'w', 'e', 'l', 'c', 'o', 'm', 'e'};
pTxCharacteristic->setValue(Message);
pTxCharacteristic->notify();
i can see it correctly on Mac using BLE Terminal app but iPhone app never receive any message…
Notice that i also tried adding chr(10) at the end, or chr(13) but nothing change…
I also tried to send string directly like:
pTxCharacteristic->setValue("Welcome");
pTxCharacteristic->notify();
again this work on Mac using BLE Terminal but nothing happens on my iPhone app…
Any idea?
Thank you all!