setTime

suspend fun setTime(timeZone: String = TimeZone.getDefault().id)

Sets the current time on the watch from the time on the phone. In addition, it can optionally set the Home Time to the current time zone. If timezone changes during travel, the watch will automatically be set to the correct time and timezone after running this function.

Parameters

timeZone

Optional String parameter of form "region/city', i.e.: "Europe/Sofia". Example:

    setTime()
setTime(TimeZone.getDefault().id)
setTime("Europe/Sofia")