├── .gitignore ├── HeartRateKit ├── HeartRateKit.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Internal │ ├── HRKButterworth.cpp │ ├── HRKButterworth.h │ ├── HeartRateKitAlgorithm.h │ ├── HeartRateKitAlgorithm.mm │ ├── HeartRateKitController.m │ ├── HeartRateKitResult+Protected.h │ ├── HeartRateKitResult.m │ ├── UIImage+ImageAverageColor.h │ ├── UIImage+ImageAverageColor.m │ ├── UIView+HeartRateKit.h │ └── UIView+HeartRateKit.m └── Public │ ├── HeartRateKit.h │ ├── HeartRateKitController.h │ └── HeartRateKitResult.h ├── LICENSE ├── PulseDetector ├── PulseDetector.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── PulseDetector │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-57x57@1x.png │ │ ├── Icon-App-57x57@2x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-72x72@1x.png │ │ ├── Icon-App-72x72@2x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ ├── Icon-App-83.5x83.5@2x.png │ │ ├── Icon-Small-50x50@1x.png │ │ └── Icon-Small-50x50@2x.png │ ├── iTunesArtwork@1x.png │ ├── iTunesArtwork@2x.png │ └── iTunesArtwork@3x.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── README.md └── Source ├── ATHeartRate-master ├── .gitignore ├── ATHeartRate │ ├── ATHeartRate.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── ATHeartRate │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── HeartRateDetectionModel.h │ │ ├── HeartRateDetectionModel.m │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ └── ATHeartRateTests │ │ ├── ATHeartRateTests.m │ │ └── Info.plist ├── LICENSE └── README.md ├── HeartBeats-master ├── .gitignore ├── HeartBeats.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── HeartBeats │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── HeartBeats-Info.plist │ ├── HeartBeats-Prefix.pch │ ├── MainViewController.h │ ├── MainViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── README.md └── demo.png ├── Heartbeat-master ├── CorePlotHeaders │ ├── CPTAnimation.h │ ├── CPTAnimationOperation.h │ ├── CPTAnimationPeriod.h │ ├── CPTAnnotation.h │ ├── CPTAnnotationHostLayer.h │ ├── CPTAxis.h │ ├── CPTAxisLabel.h │ ├── CPTAxisLabelGroup.h │ ├── CPTAxisSet.h │ ├── CPTAxisTitle.h │ ├── CPTBarPlot.h │ ├── CPTBorderedLayer.h │ ├── CPTCalendarFormatter.h │ ├── CPTColor.h │ ├── CPTColorSpace.h │ ├── CPTConstraints.h │ ├── CPTDataSourceTestCase.h │ ├── CPTDefinitions.h │ ├── CPTDerivedXYGraph.h │ ├── CPTExceptions.h │ ├── CPTFill.h │ ├── CPTFunctionDataSource.h │ ├── CPTGradient.h │ ├── CPTGraph.h │ ├── CPTGraphHostingView.h │ ├── CPTGridLineGroup.h │ ├── CPTGridLines.h │ ├── CPTImage.h │ ├── CPTLayer.h │ ├── CPTLayerAnnotation.h │ ├── CPTLegend.h │ ├── CPTLegendEntry.h │ ├── CPTLimitBand.h │ ├── CPTLineCap.h │ ├── CPTLineStyle.h │ ├── CPTMutableLineStyle.h │ ├── CPTMutableNumericData+TypeConversion.h │ ├── CPTMutableNumericData.h │ ├── CPTMutablePlotRange.h │ ├── CPTMutableShadow.h │ ├── CPTMutableTextStyle.h │ ├── CPTNumericData+TypeConversion.h │ ├── CPTNumericData.h │ ├── CPTNumericDataType.h │ ├── CPTPathExtensions.h │ ├── CPTPieChart.h │ ├── CPTPlatformSpecificCategories.h │ ├── CPTPlatformSpecificDefines.h │ ├── CPTPlatformSpecificFunctions.h │ ├── CPTPlot.h │ ├── CPTPlotArea.h │ ├── CPTPlotAreaFrame.h │ ├── CPTPlotGroup.h │ ├── CPTPlotRange.h │ ├── CPTPlotSpace.h │ ├── CPTPlotSpaceAnnotation.h │ ├── CPTPlotSymbol.h │ ├── CPTRangePlot.h │ ├── CPTResponder.h │ ├── CPTScatterPlot.h │ ├── CPTShadow.h │ ├── CPTTestCase.h │ ├── CPTTextLayer.h │ ├── CPTTextStyle.h │ ├── CPTTextStylePlatformSpecific.h │ ├── CPTTheme.h │ ├── CPTTimeFormatter.h │ ├── CPTTradingRangePlot.h │ ├── CPTUtilities.h │ ├── CPTXYAxis.h │ ├── CPTXYAxisSet.h │ ├── CPTXYGraph.h │ ├── CPTXYPlotSpace.h │ ├── CorePlot-CocoaTouch.h │ ├── NSCoderExtensions.h │ ├── NSDecimalNumberExtensions.h │ ├── NSNumberExtensions.h │ └── mainpage.h ├── FBUserSettingsViewResources.bundle │ ├── Contents │ │ └── Resources │ │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ │ └── he.lproj │ │ │ └── Localizable.strings │ └── images │ │ ├── facebook-logo.png │ │ ├── facebook-logo@2x.png │ │ ├── loginBackgroundIPadLandscape.jpg │ │ ├── loginBackgroundIPadLandscape@2x.jpg │ │ ├── loginBackgroundIPadPortrait.jpg │ │ ├── loginBackgroundIPadPortrait@2x.jpg │ │ ├── loginBackgroundIPhonePortrait.jpg │ │ ├── loginBackgroundIPhonePortrait@2x.jpg │ │ ├── silver-button-normal.png │ │ ├── silver-button-normal@2x.png │ │ ├── silver-button-pressed.png │ │ └── silver-button-pressed@2x.png ├── Heartbeat.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Heartbeat │ ├── Algorithm.h │ ├── Algorithm.mm │ ├── Background_2@2x.jpg │ ├── Butterworth.cpp │ ├── Butterworth.h │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── FacebookProfileTableViewCell.h │ ├── FacebookProfileTableViewCell.m │ ├── FacebookUserManager.h │ ├── FacebookUserManager.m │ ├── HeartBeatAppDelegate.h │ ├── HeartBeatAppDelegate.m │ ├── Heart_Full@2x.png │ ├── Heart_line@2x.png │ ├── Heartbeat-Info.plist │ ├── Heartbeat-Prefix.pch │ ├── HelpViewController.h │ ├── HelpViewController.m │ ├── Help_Line@2x.png │ ├── Help_full@2x.png │ ├── IconFacebook-72@2x.png │ ├── Lamb_Full@2x.png │ ├── Mask@2x.png │ ├── MenuTabBarViewController.h │ ├── MenuTabBarViewController.m │ ├── Result.h │ ├── Result.m │ ├── ResultCollectionViewCell.h │ ├── ResultCollectionViewCell.m │ ├── ResultView.h │ ├── ResultView.m │ ├── ResultsViewController.h │ ├── ResultsViewController.m │ ├── Settings.h │ ├── Settings.m │ ├── Settings_Line-1@2x.png │ ├── Settings_Line@2x.png │ ├── Settings_full@2x.png │ ├── UIImage+ImageAverageColor.h │ ├── UIImage+ImageAverageColor.m │ ├── UILabel+FSHIghlightAnimationAdditions.h │ ├── UILabel+FSHIghlightAnimationAdditions.m │ ├── VideoManagerViewController.h │ ├── VideoManagerViewController.m │ ├── Wall-2@2x.jpg │ ├── WelcomeScreenViewController.h │ ├── WelcomeScreenViewController.m │ ├── beep-21.wav │ ├── blue-green@2x.png │ ├── default_bg.png │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── facebook-cell-background-1x5.png │ ├── green-blue-fade@2x.png │ ├── heart +@2x.png │ ├── heart-rate.png │ ├── heart@2x.png │ ├── info@2x.png │ ├── ios-7-green-fade@2x.png │ ├── iphone_JPG@2x.jpg │ ├── lamb_Line@2x.png │ ├── main.m │ ├── pieChart_Line@2x.png │ ├── pieChart_full@2x.png │ ├── pink-ios-7-fade@2x.png │ ├── pulse-beep.wav │ ├── settings 11@2x.png │ ├── settings 12@2x.png │ ├── settings 3@2x.png │ ├── settings 4@2x.png │ ├── settings_full-1@2x.png │ ├── spanner.png │ └── stawberry_iPhone@2x.jpg ├── MainNavigationViewController.h ├── MainNavigationViewController.m ├── README.md ├── Storyboard.storyboard └── libCorePlot-CocoaTouch.a ├── SampleHeartRateApp ├── SampleHeartRateApp.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── SampleHeartRateApp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Filter.h │ ├── Filter.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── PulseDetector.h │ ├── PulseDetector.mm │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── SampleHeartRateAppTests │ ├── Info.plist │ └── SampleHeartRateAppTests.m └── cardiology-icon-png-25442 ├── android ├── mipmap-hdpi │ └── ic_launcher.png ├── mipmap-ldpi │ └── ic_launcher.png ├── mipmap-mdpi │ └── ic_launcher.png ├── mipmap-xhdpi │ └── ic_launcher.png ├── mipmap-xxhdpi │ └── ic_launcher.png ├── mipmap-xxxhdpi │ └── ic_launcher.png └── playstore-icon.png ├── imessenger ├── icon-messages-app-27x20@1x.png ├── icon-messages-app-27x20@2x.png ├── icon-messages-app-27x20@3x.png ├── icon-messages-app-iPadAir-67x50@2x.png ├── icon-messages-app-iPadAir-74x55@2x.png ├── icon-messages-app-iPhone-60x45@1x.png ├── icon-messages-app-iPhone-60x45@2x.png ├── icon-messages-app-iPhone-60x45@3x.png ├── icon-messages-app-store-1024x768.png ├── icon-messages-transcript-32x24@1x.png ├── icon-messages-transcript-32x24@2x.png └── icon-messages-transcript-32x24@3x.png └── ios └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/.gitignore -------------------------------------------------------------------------------- /HeartRateKit/HeartRateKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/HeartRateKit/HeartRateKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HeartRateKit/HeartRateKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/HeartRateKit/HeartRateKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HeartRateKit/Internal/HRKButterworth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/HeartRateKit/Internal/HRKButterworth.cpp -------------------------------------------------------------------------------- /HeartRateKit/Internal/HRKButterworth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/HeartRateKit/Internal/HRKButterworth.h -------------------------------------------------------------------------------- /HeartRateKit/Internal/HeartRateKitAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/HeartRateKit/Internal/HeartRateKitAlgorithm.h -------------------------------------------------------------------------------- /HeartRateKit/Internal/HeartRateKitAlgorithm.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/HeartRateKit/Internal/HeartRateKitAlgorithm.mm -------------------------------------------------------------------------------- /HeartRateKit/Internal/HeartRateKitController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/HeartRateKit/Internal/HeartRateKitController.m -------------------------------------------------------------------------------- /HeartRateKit/Internal/HeartRateKitResult+Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/HeartRateKit/Internal/HeartRateKitResult+Protected.h -------------------------------------------------------------------------------- /HeartRateKit/Internal/HeartRateKitResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/HeartRateKit/Internal/HeartRateKitResult.m -------------------------------------------------------------------------------- /HeartRateKit/Internal/UIImage+ImageAverageColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/HeartRateKit/Internal/UIImage+ImageAverageColor.h -------------------------------------------------------------------------------- /HeartRateKit/Internal/UIImage+ImageAverageColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/HeartRateKit/Internal/UIImage+ImageAverageColor.m -------------------------------------------------------------------------------- /HeartRateKit/Internal/UIView+HeartRateKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/HeartRateKit/Internal/UIView+HeartRateKit.h -------------------------------------------------------------------------------- /HeartRateKit/Internal/UIView+HeartRateKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/HeartRateKit/Internal/UIView+HeartRateKit.m -------------------------------------------------------------------------------- /HeartRateKit/Public/HeartRateKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/HeartRateKit/Public/HeartRateKit.h -------------------------------------------------------------------------------- /HeartRateKit/Public/HeartRateKitController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/HeartRateKit/Public/HeartRateKitController.h -------------------------------------------------------------------------------- /HeartRateKit/Public/HeartRateKitResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/HeartRateKit/Public/HeartRateKitResult.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/LICENSE -------------------------------------------------------------------------------- /PulseDetector/PulseDetector.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PulseDetector/PulseDetector.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/AppDelegate.h -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/AppDelegate.m -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/iTunesArtwork@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/iTunesArtwork@1x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Assets.xcassets/iTunesArtwork@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Assets.xcassets/iTunesArtwork@3x.png -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/Info.plist -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/ViewController.h -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/ViewController.m -------------------------------------------------------------------------------- /PulseDetector/PulseDetector/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/PulseDetector/PulseDetector/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/README.md -------------------------------------------------------------------------------- /Source/ATHeartRate-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/ATHeartRate-master/.gitignore -------------------------------------------------------------------------------- /Source/ATHeartRate-master/ATHeartRate/ATHeartRate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/ATHeartRate-master/ATHeartRate/ATHeartRate.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Source/ATHeartRate-master/ATHeartRate/ATHeartRate.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/ATHeartRate-master/ATHeartRate/ATHeartRate.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Source/ATHeartRate-master/ATHeartRate/ATHeartRate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/ATHeartRate-master/ATHeartRate/ATHeartRate/AppDelegate.h -------------------------------------------------------------------------------- /Source/ATHeartRate-master/ATHeartRate/ATHeartRate/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/ATHeartRate-master/ATHeartRate/ATHeartRate/AppDelegate.m -------------------------------------------------------------------------------- /Source/ATHeartRate-master/ATHeartRate/ATHeartRate/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/ATHeartRate-master/ATHeartRate/ATHeartRate/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Source/ATHeartRate-master/ATHeartRate/ATHeartRate/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/ATHeartRate-master/ATHeartRate/ATHeartRate/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Source/ATHeartRate-master/ATHeartRate/ATHeartRate/HeartRateDetectionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/ATHeartRate-master/ATHeartRate/ATHeartRate/HeartRateDetectionModel.h -------------------------------------------------------------------------------- /Source/ATHeartRate-master/ATHeartRate/ATHeartRate/HeartRateDetectionModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/ATHeartRate-master/ATHeartRate/ATHeartRate/HeartRateDetectionModel.m -------------------------------------------------------------------------------- /Source/ATHeartRate-master/ATHeartRate/ATHeartRate/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/ATHeartRate-master/ATHeartRate/ATHeartRate/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Source/ATHeartRate-master/ATHeartRate/ATHeartRate/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/ATHeartRate-master/ATHeartRate/ATHeartRate/Info.plist -------------------------------------------------------------------------------- /Source/ATHeartRate-master/ATHeartRate/ATHeartRate/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/ATHeartRate-master/ATHeartRate/ATHeartRate/ViewController.h -------------------------------------------------------------------------------- /Source/ATHeartRate-master/ATHeartRate/ATHeartRate/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/ATHeartRate-master/ATHeartRate/ATHeartRate/ViewController.m -------------------------------------------------------------------------------- /Source/ATHeartRate-master/ATHeartRate/ATHeartRate/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/ATHeartRate-master/ATHeartRate/ATHeartRate/main.m -------------------------------------------------------------------------------- /Source/ATHeartRate-master/ATHeartRate/ATHeartRateTests/ATHeartRateTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/ATHeartRate-master/ATHeartRate/ATHeartRateTests/ATHeartRateTests.m -------------------------------------------------------------------------------- /Source/ATHeartRate-master/ATHeartRate/ATHeartRateTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/ATHeartRate-master/ATHeartRate/ATHeartRateTests/Info.plist -------------------------------------------------------------------------------- /Source/ATHeartRate-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/ATHeartRate-master/LICENSE -------------------------------------------------------------------------------- /Source/ATHeartRate-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/ATHeartRate-master/README.md -------------------------------------------------------------------------------- /Source/HeartBeats-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/HeartBeats-master/.gitignore -------------------------------------------------------------------------------- /Source/HeartBeats-master/HeartBeats.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/HeartBeats-master/HeartBeats.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Source/HeartBeats-master/HeartBeats.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/HeartBeats-master/HeartBeats.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Source/HeartBeats-master/HeartBeats/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/HeartBeats-master/HeartBeats/AppDelegate.h -------------------------------------------------------------------------------- /Source/HeartBeats-master/HeartBeats/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/HeartBeats-master/HeartBeats/AppDelegate.m -------------------------------------------------------------------------------- /Source/HeartBeats-master/HeartBeats/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/HeartBeats-master/HeartBeats/Default-568h@2x.png -------------------------------------------------------------------------------- /Source/HeartBeats-master/HeartBeats/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/HeartBeats-master/HeartBeats/Default.png -------------------------------------------------------------------------------- /Source/HeartBeats-master/HeartBeats/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/HeartBeats-master/HeartBeats/Default@2x.png -------------------------------------------------------------------------------- /Source/HeartBeats-master/HeartBeats/HeartBeats-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/HeartBeats-master/HeartBeats/HeartBeats-Info.plist -------------------------------------------------------------------------------- /Source/HeartBeats-master/HeartBeats/HeartBeats-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/HeartBeats-master/HeartBeats/HeartBeats-Prefix.pch -------------------------------------------------------------------------------- /Source/HeartBeats-master/HeartBeats/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/HeartBeats-master/HeartBeats/MainViewController.h -------------------------------------------------------------------------------- /Source/HeartBeats-master/HeartBeats/MainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/HeartBeats-master/HeartBeats/MainViewController.m -------------------------------------------------------------------------------- /Source/HeartBeats-master/HeartBeats/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Source/HeartBeats-master/HeartBeats/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/HeartBeats-master/HeartBeats/main.m -------------------------------------------------------------------------------- /Source/HeartBeats-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/HeartBeats-master/README.md -------------------------------------------------------------------------------- /Source/HeartBeats-master/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/HeartBeats-master/demo.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTAnimation.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTAnimationOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTAnimationOperation.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTAnimationPeriod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTAnimationPeriod.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTAnnotation.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTAnnotationHostLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTAnnotationHostLayer.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTAxis.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTAxisLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTAxisLabel.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTAxisLabelGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTAxisLabelGroup.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTAxisSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTAxisSet.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTAxisTitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTAxisTitle.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTBarPlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTBarPlot.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTBorderedLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTBorderedLayer.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTCalendarFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTCalendarFormatter.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTColor.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTColorSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTColorSpace.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTConstraints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTConstraints.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTDataSourceTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTDataSourceTestCase.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTDefinitions.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTDerivedXYGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTDerivedXYGraph.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTExceptions.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTFill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTFill.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTFunctionDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTFunctionDataSource.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTGradient.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTGraph.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTGraphHostingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTGraphHostingView.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTGridLineGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTGridLineGroup.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTGridLines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTGridLines.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTImage.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTLayer.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTLayerAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTLayerAnnotation.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTLegend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTLegend.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTLegendEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTLegendEntry.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTLimitBand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTLimitBand.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTLineCap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTLineCap.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTLineStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTLineStyle.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTMutableLineStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTMutableLineStyle.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTMutableNumericData+TypeConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTMutableNumericData+TypeConversion.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTMutableNumericData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTMutableNumericData.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTMutablePlotRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTMutablePlotRange.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTMutableShadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTMutableShadow.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTMutableTextStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTMutableTextStyle.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTNumericData+TypeConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTNumericData+TypeConversion.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTNumericData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTNumericData.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTNumericDataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTNumericDataType.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTPathExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTPathExtensions.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTPieChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTPieChart.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTPlatformSpecificCategories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTPlatformSpecificCategories.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTPlatformSpecificDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTPlatformSpecificDefines.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTPlatformSpecificFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTPlatformSpecificFunctions.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTPlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTPlot.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTPlotArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTPlotArea.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTPlotAreaFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTPlotAreaFrame.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTPlotGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTPlotGroup.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTPlotRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTPlotRange.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTPlotSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTPlotSpace.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTPlotSpaceAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTPlotSpaceAnnotation.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTPlotSymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTPlotSymbol.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTRangePlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTRangePlot.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTResponder.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTScatterPlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTScatterPlot.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTShadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTShadow.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTTestCase.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTTextLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTTextLayer.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTTextStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTTextStyle.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTTextStylePlatformSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTTextStylePlatformSpecific.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTTheme.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTTimeFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTTimeFormatter.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTTradingRangePlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTTradingRangePlot.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTUtilities.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTXYAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTXYAxis.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTXYAxisSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTXYAxisSet.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTXYGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTXYGraph.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CPTXYPlotSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CPTXYPlotSpace.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/CorePlot-CocoaTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/CorePlot-CocoaTouch.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/NSCoderExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/NSCoderExtensions.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/NSDecimalNumberExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/NSDecimalNumberExtensions.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/NSNumberExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/NSNumberExtensions.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/CorePlotHeaders/mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/CorePlotHeaders/mainpage.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/FBUserSettingsViewResources.bundle/Contents/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/FBUserSettingsViewResources.bundle/Contents/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Source/Heartbeat-master/FBUserSettingsViewResources.bundle/Contents/Resources/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/FBUserSettingsViewResources.bundle/Contents/Resources/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/facebook-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/facebook-logo.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/facebook-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/facebook-logo@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/loginBackgroundIPadLandscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/loginBackgroundIPadLandscape.jpg -------------------------------------------------------------------------------- /Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/loginBackgroundIPadLandscape@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/loginBackgroundIPadLandscape@2x.jpg -------------------------------------------------------------------------------- /Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/loginBackgroundIPadPortrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/loginBackgroundIPadPortrait.jpg -------------------------------------------------------------------------------- /Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/loginBackgroundIPadPortrait@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/loginBackgroundIPadPortrait@2x.jpg -------------------------------------------------------------------------------- /Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/loginBackgroundIPhonePortrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/loginBackgroundIPhonePortrait.jpg -------------------------------------------------------------------------------- /Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/loginBackgroundIPhonePortrait@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/loginBackgroundIPhonePortrait@2x.jpg -------------------------------------------------------------------------------- /Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/silver-button-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/silver-button-normal.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/silver-button-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/silver-button-normal@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/silver-button-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/silver-button-pressed.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/silver-button-pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/FBUserSettingsViewResources.bundle/images/silver-button-pressed@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Algorithm.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Algorithm.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Algorithm.mm -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Background_2@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Background_2@2x.jpg -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Butterworth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Butterworth.cpp -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Butterworth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Butterworth.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Default-568h@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Default.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Default@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/FacebookProfileTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/FacebookProfileTableViewCell.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/FacebookProfileTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/FacebookProfileTableViewCell.m -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/FacebookUserManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/FacebookUserManager.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/FacebookUserManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/FacebookUserManager.m -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/HeartBeatAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/HeartBeatAppDelegate.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/HeartBeatAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/HeartBeatAppDelegate.m -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Heart_Full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Heart_Full@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Heart_line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Heart_line@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Heartbeat-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Heartbeat-Info.plist -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Heartbeat-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Heartbeat-Prefix.pch -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/HelpViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/HelpViewController.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/HelpViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/HelpViewController.m -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Help_Line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Help_Line@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Help_full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Help_full@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/IconFacebook-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/IconFacebook-72@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Lamb_Full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Lamb_Full@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Mask@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/MenuTabBarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/MenuTabBarViewController.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/MenuTabBarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/MenuTabBarViewController.m -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Result.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Result.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Result.m -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/ResultCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/ResultCollectionViewCell.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/ResultCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/ResultCollectionViewCell.m -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/ResultView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/ResultView.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/ResultView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/ResultView.m -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/ResultsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/ResultsViewController.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/ResultsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/ResultsViewController.m -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Settings.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Settings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Settings.m -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Settings_Line-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Settings_Line-1@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Settings_Line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Settings_Line@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Settings_full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Settings_full@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/UIImage+ImageAverageColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/UIImage+ImageAverageColor.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/UIImage+ImageAverageColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/UIImage+ImageAverageColor.m -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/UILabel+FSHIghlightAnimationAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/UILabel+FSHIghlightAnimationAdditions.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/UILabel+FSHIghlightAnimationAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/UILabel+FSHIghlightAnimationAdditions.m -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/VideoManagerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/VideoManagerViewController.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/VideoManagerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/VideoManagerViewController.m -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/Wall-2@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/Wall-2@2x.jpg -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/WelcomeScreenViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/WelcomeScreenViewController.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/WelcomeScreenViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/WelcomeScreenViewController.m -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/beep-21.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/beep-21.wav -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/blue-green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/blue-green@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/default_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/default_bg.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/facebook-cell-background-1x5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/facebook-cell-background-1x5.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/green-blue-fade@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/green-blue-fade@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/heart +@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/heart +@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/heart-rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/heart-rate.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/heart@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/info@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/ios-7-green-fade@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/ios-7-green-fade@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/iphone_JPG@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/iphone_JPG@2x.jpg -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/lamb_Line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/lamb_Line@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/main.m -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/pieChart_Line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/pieChart_Line@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/pieChart_full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/pieChart_full@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/pink-ios-7-fade@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/pink-ios-7-fade@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/pulse-beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/pulse-beep.wav -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/settings 11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/settings 11@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/settings 12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/settings 12@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/settings 3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/settings 3@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/settings 4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/settings 4@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/settings_full-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/settings_full-1@2x.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/spanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/spanner.png -------------------------------------------------------------------------------- /Source/Heartbeat-master/Heartbeat/stawberry_iPhone@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Heartbeat/stawberry_iPhone@2x.jpg -------------------------------------------------------------------------------- /Source/Heartbeat-master/MainNavigationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/MainNavigationViewController.h -------------------------------------------------------------------------------- /Source/Heartbeat-master/MainNavigationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/MainNavigationViewController.m -------------------------------------------------------------------------------- /Source/Heartbeat-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/README.md -------------------------------------------------------------------------------- /Source/Heartbeat-master/Storyboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/Storyboard.storyboard -------------------------------------------------------------------------------- /Source/Heartbeat-master/libCorePlot-CocoaTouch.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/Heartbeat-master/libCorePlot-CocoaTouch.a -------------------------------------------------------------------------------- /Source/SampleHeartRateApp/SampleHeartRateApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/SampleHeartRateApp/SampleHeartRateApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Source/SampleHeartRateApp/SampleHeartRateApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/SampleHeartRateApp/SampleHeartRateApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Source/SampleHeartRateApp/SampleHeartRateApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/SampleHeartRateApp/SampleHeartRateApp/AppDelegate.h -------------------------------------------------------------------------------- /Source/SampleHeartRateApp/SampleHeartRateApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/SampleHeartRateApp/SampleHeartRateApp/AppDelegate.m -------------------------------------------------------------------------------- /Source/SampleHeartRateApp/SampleHeartRateApp/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/SampleHeartRateApp/SampleHeartRateApp/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Source/SampleHeartRateApp/SampleHeartRateApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/SampleHeartRateApp/SampleHeartRateApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Source/SampleHeartRateApp/SampleHeartRateApp/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/SampleHeartRateApp/SampleHeartRateApp/Filter.h -------------------------------------------------------------------------------- /Source/SampleHeartRateApp/SampleHeartRateApp/Filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/SampleHeartRateApp/SampleHeartRateApp/Filter.m -------------------------------------------------------------------------------- /Source/SampleHeartRateApp/SampleHeartRateApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/SampleHeartRateApp/SampleHeartRateApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Source/SampleHeartRateApp/SampleHeartRateApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/SampleHeartRateApp/SampleHeartRateApp/Info.plist -------------------------------------------------------------------------------- /Source/SampleHeartRateApp/SampleHeartRateApp/PulseDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/SampleHeartRateApp/SampleHeartRateApp/PulseDetector.h -------------------------------------------------------------------------------- /Source/SampleHeartRateApp/SampleHeartRateApp/PulseDetector.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/SampleHeartRateApp/SampleHeartRateApp/PulseDetector.mm -------------------------------------------------------------------------------- /Source/SampleHeartRateApp/SampleHeartRateApp/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/SampleHeartRateApp/SampleHeartRateApp/ViewController.h -------------------------------------------------------------------------------- /Source/SampleHeartRateApp/SampleHeartRateApp/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/SampleHeartRateApp/SampleHeartRateApp/ViewController.m -------------------------------------------------------------------------------- /Source/SampleHeartRateApp/SampleHeartRateApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/SampleHeartRateApp/SampleHeartRateApp/main.m -------------------------------------------------------------------------------- /Source/SampleHeartRateApp/SampleHeartRateAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/SampleHeartRateApp/SampleHeartRateAppTests/Info.plist -------------------------------------------------------------------------------- /Source/SampleHeartRateApp/SampleHeartRateAppTests/SampleHeartRateAppTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/SampleHeartRateApp/SampleHeartRateAppTests/SampleHeartRateAppTests.m -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/android/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/android/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/android/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/android/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/android/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/android/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/android/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/android/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/android/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/android/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/android/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/android/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/android/playstore-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/android/playstore-icon.png -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/imessenger/icon-messages-app-27x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/imessenger/icon-messages-app-27x20@1x.png -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/imessenger/icon-messages-app-27x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/imessenger/icon-messages-app-27x20@2x.png -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/imessenger/icon-messages-app-27x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/imessenger/icon-messages-app-27x20@3x.png -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/imessenger/icon-messages-app-iPadAir-67x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/imessenger/icon-messages-app-iPadAir-67x50@2x.png -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/imessenger/icon-messages-app-iPadAir-74x55@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/imessenger/icon-messages-app-iPadAir-74x55@2x.png -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/imessenger/icon-messages-app-iPhone-60x45@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/imessenger/icon-messages-app-iPhone-60x45@1x.png -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/imessenger/icon-messages-app-iPhone-60x45@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/imessenger/icon-messages-app-iPhone-60x45@2x.png -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/imessenger/icon-messages-app-iPhone-60x45@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/imessenger/icon-messages-app-iPhone-60x45@3x.png -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/imessenger/icon-messages-app-store-1024x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/imessenger/icon-messages-app-store-1024x768.png -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/imessenger/icon-messages-transcript-32x24@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/imessenger/icon-messages-transcript-32x24@1x.png -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/imessenger/icon-messages-transcript-32x24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/imessenger/icon-messages-transcript-32x24@2x.png -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/imessenger/icon-messages-transcript-32x24@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/imessenger/icon-messages-transcript-32x24@3x.png -------------------------------------------------------------------------------- /Source/cardiology-icon-png-25442/ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ItamarM/HeartRate-iOS-SDK/HEAD/Source/cardiology-icon-png-25442/ios/README.md --------------------------------------------------------------------------------