Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to send data from smartwatch to Flutter app

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?

like image 861
Rania Avatar asked Oct 15 '25 07:10

Rania


1 Answers

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);
});
like image 172
samUser1 Avatar answered Oct 17 '25 00:10

samUser1



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!