PolarTemperatureApi
public protocol PolarTemperatureApi
Polar temperature API.
Requires
Requires SDK feature(s):PolarBleSdkFeature.feature_polar_temperature_data
-
Get skin temperature for a given period.
Requires
Requires SDK feature(s):
PolarBleSdkFeature.feature_polar_temperature_dataDeclaration
Swift
func getSkinTemperature(identifier: String, fromDate: Date, toDate: Date) -> Single<[PolarSkinTemperatureData.PolarSkinTemperatureResult]>Parameters
identifierThe Polar device ID or BT address.
fromDateThe starting date of the period to retrieve skin temperature from.
toDateThe ending date of the period to retrieve skin temperature from.
Return Value
A Single emitting an array of
PolarSkinTemperatureResultrepresenting the skin temperature data for the specified period.