Interface PolarSdkModeApi
-
- All Implemented Interfaces:
public interface PolarSdkModeApiPolar SDK mode API
In SDK mode the wider range of capabilities is available for the online streaming or for the offline recording than in normal operation mode. The available capabilities can be asked from device using PolarOnlineStreamingApi.requestFullStreamSettings or PolarOfflineRecordingApi.requestFullOfflineRecordingSettings
Requires features FEATURE_POLAR_SDK_MODE
Note, SDK mode supported by VeritySense starting from firmware 1.1.5
-
-
Method Summary
Modifier and Type Method Description abstract UnitenableSDKMode(String identifier)Enables SDK mode. abstract UnitdisableSDKMode(String identifier)Disables SDK mode. abstract BooleanisSDKModeEnabled(String identifier)Check if SDK mode currently enabled. -
-
Method Detail
-
enableSDKMode
abstract Unit enableSDKMode(String identifier)
Enables SDK mode. Requires feature PolarBleApi.PolarBleSdkFeature.FEATURE_POLAR_SDK_MODE
- Parameters:
identifier- Polar device id found printed on the sensor/device or bt address
-
disableSDKMode
abstract Unit disableSDKMode(String identifier)
Disables SDK mode. Requires feature PolarBleApi.PolarBleSdkFeature.FEATURE_POLAR_SDK_MODE
- Parameters:
identifier- Polar device id found printed on the sensor/device or bt address
-
isSDKModeEnabled
abstract Boolean isSDKModeEnabled(String identifier)
Check if SDK mode currently enabled. Requires feature PolarBleApi.PolarBleSdkFeature.FEATURE_POLAR_SDK_MODE
Note, SDK status check is supported by VeritySense starting from firmware 2.1.0
- Parameters:
identifier- Polar device id found printed on the sensor/device or bt address- Returns:
true if SDK mode is currently enabled
-
-
-
-