From c03e8cfca99dfe821c2adcca1bcc1cddffc7e55e Mon Sep 17 00:00:00 2001 From: Erkki Silvola Date: Tue, 2 Jul 2019 14:41:06 +0300 Subject: [PATCH] readme updated, information of H10 timestamps added --- README.md | 4 ++-- .../example-ios/polarBleSdkTestApp/TestClass.h | 17 +++++++++++++++++ .../example-ios/polarBleSdkTestApp/TestClass.m | 13 +++++++++++++ 3 files changed, 32 insertions(+), 2 deletions(-) create mode 100644 examples/example-ios/polarBleSdkTestApp/TestClass.h create mode 100644 examples/example-ios/polarBleSdkTestApp/TestClass.m diff --git a/README.md b/README.md index f3d4b912..aec89a30 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,8 @@ Most accurate Heart rate sensor in the markets. The H10 is used in the Getting s #### H10 heart rate sensor available data types * From version 3.0.35 onwards. Available later. * Heart rate as beats per minute. RR Interval in ms and 1/1024 format. -* Electrocardiography (ECG) data in µV. -* Accelerometer data with samplerates of 25Hz, 50Hz, 100Hz and 200Hz and range of 2G, 4G and 8G. Axis specific acceleration data in mG. +* Electrocardiography (ECG) data in µV. Default epoch for timestamp is 1.1.2000 +* Accelerometer data with samplerates of 25Hz, 50Hz, 100Hz and 200Hz and range of 2G, 4G and 8G. Axis specific acceleration data in mG. Default epoch for timestamp is 1.1.2000 * Start and stop of internal recording and request for internal recording status. Recording supports RR, HR with one second sampletime or HR with five second sampletime. * List, read and remove for stored internal recording (sensor supports only one recording at the time). diff --git a/examples/example-ios/polarBleSdkTestApp/TestClass.h b/examples/example-ios/polarBleSdkTestApp/TestClass.h new file mode 100644 index 00000000..827f9356 --- /dev/null +++ b/examples/example-ios/polarBleSdkTestApp/TestClass.h @@ -0,0 +1,17 @@ +// +// TestClass.h +// polarBleSdkTestApp +// +// Created by Silvola Erkki on 24/06/2019. +// Copyright © 2019 Polar. All rights reserved. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface TestClass : NSObject + +@end + +NS_ASSUME_NONNULL_END diff --git a/examples/example-ios/polarBleSdkTestApp/TestClass.m b/examples/example-ios/polarBleSdkTestApp/TestClass.m new file mode 100644 index 00000000..45f69a45 --- /dev/null +++ b/examples/example-ios/polarBleSdkTestApp/TestClass.m @@ -0,0 +1,13 @@ +// +// TestClass.m +// polarBleSdkTestApp +// +// Created by Silvola Erkki on 24/06/2019. +// Copyright © 2019 Polar. All rights reserved. +// + +#import "TestClass.h" + +@implementation TestClass + +@end