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
Hello guys,
I need make a communication with a fat scale equipment in .Net core, so i need followings:
So, I can't get the notify value. I looked for samples, but I didn't find it. I beleave that I'm doing anything wrong in code.
Look it:
private async Task GetNotificationBodyFatScaleAsync() { var characteristic = await LoadCharacteristic(CHARACTERISTIC_MEASURE); characteristic.Value += BodyFatScaleDataReceivedAsync; } private async Task BodyFatScaleDataReceivedAsync(GattCharacteristic sender, GattCharacteristicValueEventArgs eventArgs) { try { Console.Out.WriteLine($"Received event from fat scale {eventArgs.Value}"); } catch (Exception ex) { Console.Error.WriteLine(ex); } }
I'm following by this one https://github.com/hashtagchris/DotNet-BlueZ#subscribe-to-gatt-characteristic-notifications
Could you help me? Could you send me an example? Or are there any error in lib?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello guys,
I need make a communication with a fat scale equipment in .Net core, so i need followings:
So, I can't get the notify value. I looked for samples, but I didn't find it.
I beleave that I'm doing anything wrong in code.
Look it:
I'm following by this one https://github.com/hashtagchris/DotNet-BlueZ#subscribe-to-gatt-characteristic-notifications
Could you help me? Could you send me an example? Or are there any error in lib?
The text was updated successfully, but these errors were encountered: