We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! thanks for this add-on, I am trying to connect to a simple ESP32 device that exposes a characteristic as:
// Create the characteristic BLECharacteristic* pCharacteristic = pService->createCharacteristic( CHARACTERISTIC_UUID, BLECharacteristic::PROPERTY_READ | BLECharacteristic::PROPERTY_NOTIFY | BLECharacteristic::PROPERTY_INDICATE);
After connecting to the device (this part works ok), when I try to get if I can read the value:
const result = await BleClient.read(device.deviceId, this.SERVICE_UUID, this.CHARACTERISTIC_UUID);
I always get:
app.component.ts:141 Error fetching fish data: NotSupportedError: GATT operation not permitted.
Even when I can read it on another app on the same PC:
I am missing something very obvious?
The text was updated successfully, but these errors were encountered:
That looks like it ought to work. Have you tried nrf Connect on mobile (there's an Apple version too) just to confirm it's not a BLE issue?
nrf Connect sometimes can show some deeper diagnostics information too, to help root-cause what's going on there.
Sorry, something went wrong.
Hi, thanks. It is very similar, also can read in nrfConnect
On the web there is no permissions I could have missed right?, I am still puzzled on why it does not work :/
Just clarifying @eried ... which platform ar eyou running on? Is this Web (via Chrome?), Android or iOS?
Hi, web via chrome, windows 10
No branches or pull requests
Hi! thanks for this add-on, I am trying to connect to a simple ESP32 device that exposes a characteristic as:
After connecting to the device (this part works ok), when I try to get if I can read the value:
I always get:
app.component.ts:141 Error fetching fish data: NotSupportedError: GATT operation not permitted.
Even when I can read it on another app on the same PC:
I am missing something very obvious?
The text was updated successfully, but these errors were encountered: