1

I know that Apple Watch apps can not be standalone. But my issue is that I want to give out Apple watches to research subjects say In a hospital or athletes at a track meet and monitor their heart rates. They do not have iPhones. The watch is the primary device of interest and I am providing an Apple Watch to them. Can I do this? Say get each Apple Watch user’s heart rate and upload it to my server? Or do I have to also buy 100 iPhones to give to each person? What’s the max number of watches that can be paired with a single iPhone and be in use simultaneously and treated as a separate watch by the iPhone?

user798719
  • 9,619
  • 25
  • 84
  • 123
  • For practical purposes you will need one phone for each watch. A phone can be paired with more than one watch, but all of the watches will have the same configuration, and unless you are going to get 100 cellular watches you won't be able to get the data off the watch without bringing them in range of your phone – Paulw11 Jun 30 '18 at 12:36

1 Answers1

1

Paulw11 is not quite correct. A watch doesn't need to be in range of its paired phone in order to connect to a server. When the phone is switched off or out of bluetooth range, the watch will quite happily connect to any preconfigured WIFI. Of course an LTE Apple Watch can also connect using Cellular.

appfigurate
  • 136
  • 1
  • 1
    Thanks. Is there a way for the iOS app or any other way to get each watch’s UUID? I would need to each watch to Have it’s own account to POST and GET info – user798719 Jul 03 '18 at 01:04
  • 1
    You could generate a globally unique identifier using [[NSUUID UUID] UUIDString] and store it either in user preferences or the keychain. Then use that UUID string going forward to identify your device uniquely. – appfigurate Jul 04 '18 at 02:01