I am looking for a method to get data(heart rate) from a smartwatch(wear/tizen/watch) and read them using a Flutter app. Anyone know of such a package or idea to communicate with the smartwatch and a Flutter APP PLZ?
Asked
Active
Viewed 3,133 times
4
-
What you are looking for is in this answer: https://stackoverflow.com/a/76464852/12555686 – Simran Sharma Jun 13 '23 at 12:24
1 Answers
3
You can look at this answer which is pretty much what you were asking.
It says that, by now, you can do it only for wear thanks to this package. Here's an example for receiving messages:
// msg is either a Map<String, dynamic> or a string (make sure to check for that when using the library)
WearableListener.listenForMessage((msg) {
print(msg);
});

samUser1
- 458
- 4
- 9