├── AudioKit_Stethoscope.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── tintash.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── tintash.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── AudioKit_Stethoscope.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── tintash.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── AudioKit_Stethoscope ├── 10K.mp3 ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── output-onlinepngtools (1).png │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Constants.swift ├── Info.plist ├── ViewController.swift ├── beat3.mp3 ├── callas8.wav ├── frequencies4.mp3 ├── heart2.mp3 ├── heart3.mp3 ├── ok.m4a └── ok.mp3 ├── AudioKit_StethoscopeTests ├── AudioKit_StethoscopeTests.swift └── Info.plist ├── Charts ├── AmplitudeChartBuilder.swift ├── FFTBuilder.swift └── FFTChartBuilder.swift ├── Managers ├── .DS_Store ├── AudioManager.swift ├── DataManager.swift └── ResultsManager.swift ├── Podfile ├── Podfile.lock ├── README.md └── Sound Files ├── callas2.wav ├── f0.1K.mp3 ├── f10K.mp3 ├── f1K.wav ├── f2K.mp3 ├── frequencies.mp3 ├── frequencies2.mp3 ├── frequencies3.mp3 └── heart.mp3 /AudioKit_Stethoscope.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AudioKit_Stethoscope.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AudioKit_Stethoscope.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AudioKit_Stethoscope.xcodeproj/project.xcworkspace/xcuserdata/tintash.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope.xcodeproj/project.xcworkspace/xcuserdata/tintash.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /AudioKit_Stethoscope.xcodeproj/xcuserdata/tintash.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope.xcodeproj/xcuserdata/tintash.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AudioKit_Stethoscope.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AudioKit_Stethoscope.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AudioKit_Stethoscope.xcworkspace/xcuserdata/tintash.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope.xcworkspace/xcuserdata/tintash.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /AudioKit_Stethoscope.xcworkspace/xcuserdata/tintash.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope.xcworkspace/xcuserdata/tintash.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /AudioKit_Stethoscope/10K.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope/10K.mp3 -------------------------------------------------------------------------------- /AudioKit_Stethoscope/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope/AppDelegate.swift -------------------------------------------------------------------------------- /AudioKit_Stethoscope/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AudioKit_Stethoscope/Assets.xcassets/AppIcon.appiconset/output-onlinepngtools (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope/Assets.xcassets/AppIcon.appiconset/output-onlinepngtools (1).png -------------------------------------------------------------------------------- /AudioKit_Stethoscope/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AudioKit_Stethoscope/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AudioKit_Stethoscope/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AudioKit_Stethoscope/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope/Constants.swift -------------------------------------------------------------------------------- /AudioKit_Stethoscope/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope/Info.plist -------------------------------------------------------------------------------- /AudioKit_Stethoscope/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope/ViewController.swift -------------------------------------------------------------------------------- /AudioKit_Stethoscope/beat3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope/beat3.mp3 -------------------------------------------------------------------------------- /AudioKit_Stethoscope/callas8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope/callas8.wav -------------------------------------------------------------------------------- /AudioKit_Stethoscope/frequencies4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope/frequencies4.mp3 -------------------------------------------------------------------------------- /AudioKit_Stethoscope/heart2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope/heart2.mp3 -------------------------------------------------------------------------------- /AudioKit_Stethoscope/heart3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope/heart3.mp3 -------------------------------------------------------------------------------- /AudioKit_Stethoscope/ok.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope/ok.m4a -------------------------------------------------------------------------------- /AudioKit_Stethoscope/ok.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_Stethoscope/ok.mp3 -------------------------------------------------------------------------------- /AudioKit_StethoscopeTests/AudioKit_StethoscopeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_StethoscopeTests/AudioKit_StethoscopeTests.swift -------------------------------------------------------------------------------- /AudioKit_StethoscopeTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/AudioKit_StethoscopeTests/Info.plist -------------------------------------------------------------------------------- /Charts/AmplitudeChartBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/Charts/AmplitudeChartBuilder.swift -------------------------------------------------------------------------------- /Charts/FFTBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/Charts/FFTBuilder.swift -------------------------------------------------------------------------------- /Charts/FFTChartBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/Charts/FFTChartBuilder.swift -------------------------------------------------------------------------------- /Managers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/Managers/.DS_Store -------------------------------------------------------------------------------- /Managers/AudioManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/Managers/AudioManager.swift -------------------------------------------------------------------------------- /Managers/DataManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/Managers/DataManager.swift -------------------------------------------------------------------------------- /Managers/ResultsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/Managers/ResultsManager.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/README.md -------------------------------------------------------------------------------- /Sound Files/callas2.wav: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sound Files/f0.1K.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/Sound Files/f0.1K.mp3 -------------------------------------------------------------------------------- /Sound Files/f10K.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/Sound Files/f10K.mp3 -------------------------------------------------------------------------------- /Sound Files/f1K.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/Sound Files/f1K.wav -------------------------------------------------------------------------------- /Sound Files/f2K.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/Sound Files/f2K.mp3 -------------------------------------------------------------------------------- /Sound Files/frequencies.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/Sound Files/frequencies.mp3 -------------------------------------------------------------------------------- /Sound Files/frequencies2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/Sound Files/frequencies2.mp3 -------------------------------------------------------------------------------- /Sound Files/frequencies3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/Sound Files/frequencies3.mp3 -------------------------------------------------------------------------------- /Sound Files/heart.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iUsmanN/Sentinel/HEAD/Sound Files/heart.mp3 --------------------------------------------------------------------------------