├── .gitignore ├── .travis.yml ├── Example ├── OABluetooth.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── OABluetooth-Example.xcscheme ├── OABluetooth.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── OABluetooth │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── BlePeripheralViewController.h │ ├── BlePeripheralViewController.m │ ├── BleScanTableViewController.h │ ├── BleScanTableViewController.m │ ├── BleViewController.h │ ├── BleViewController.m │ ├── BleViewController.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── OAAppDelegate.h │ ├── OAAppDelegate.m │ ├── OABluetooth-Info.plist │ ├── OABluetooth-Prefix.pch │ ├── ProgressButton.h │ ├── ProgressButton.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── OABluetooth.podspec.json │ ├── Manifest.lock │ ├── ObjcExtensionProperty │ │ ├── LICENSE │ │ ├── ObjcExtensionProperty │ │ │ └── Classes │ │ │ │ ├── ObjcExtensionProperty.h │ │ │ │ ├── WeakReference.h │ │ │ │ └── WeakReference.m │ │ └── README.md │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── OABluetooth │ │ ├── OABluetooth-Info.plist │ │ ├── OABluetooth-dummy.m │ │ ├── OABluetooth-prefix.pch │ │ ├── OABluetooth-umbrella.h │ │ ├── OABluetooth.modulemap │ │ └── OABluetooth.xcconfig │ │ ├── ObjcExtensionProperty │ │ ├── ObjcExtensionProperty-Info.plist │ │ ├── ObjcExtensionProperty-dummy.m │ │ ├── ObjcExtensionProperty-prefix.pch │ │ ├── ObjcExtensionProperty-umbrella.h │ │ ├── ObjcExtensionProperty.modulemap │ │ └── ObjcExtensionProperty.xcconfig │ │ ├── Pods-OABluetooth_Example │ │ ├── Pods-OABluetooth_Example-Info.plist │ │ ├── Pods-OABluetooth_Example-acknowledgements.markdown │ │ ├── Pods-OABluetooth_Example-acknowledgements.plist │ │ ├── Pods-OABluetooth_Example-dummy.m │ │ ├── Pods-OABluetooth_Example-frameworks.sh │ │ ├── Pods-OABluetooth_Example-umbrella.h │ │ ├── Pods-OABluetooth_Example.debug.xcconfig │ │ ├── Pods-OABluetooth_Example.modulemap │ │ └── Pods-OABluetooth_Example.release.xcconfig │ │ └── Pods-OABluetooth_Tests │ │ ├── Pods-OABluetooth_Tests-Info.plist │ │ ├── Pods-OABluetooth_Tests-acknowledgements.markdown │ │ ├── Pods-OABluetooth_Tests-acknowledgements.plist │ │ ├── Pods-OABluetooth_Tests-dummy.m │ │ ├── Pods-OABluetooth_Tests-umbrella.h │ │ ├── Pods-OABluetooth_Tests.debug.xcconfig │ │ ├── Pods-OABluetooth_Tests.modulemap │ │ └── Pods-OABluetooth_Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── OABluetooth.podspec ├── OABluetooth ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── Private │ ├── OABLPeripheralInterExtension.h │ ├── OABLPeripheralInterExtension.m │ ├── OABTCentralManager+Private.h │ ├── OABTDataWriteTask.h │ ├── OABTDataWriteTask.m │ ├── OABTDefines.h │ ├── OABTDiscoverTask.h │ └── OABTDiscoverTask.m │ └── Public │ ├── AssistObject │ ├── NSMutableDictionary+Appending.h │ ├── NSMutableDictionary+Appending.m │ ├── NSObject+MultiDelegates.h │ └── NSObject+MultiDelegates.m │ ├── CBPeripheral+OABLE.h │ ├── CBPeripheral+OABLE.m │ ├── OABTCentralManager.h │ ├── OABTCentralManager.m │ ├── OABTPort.h │ └── OABTPort.m ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/OABluetooth.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/OABluetooth.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/OABluetooth.xcodeproj/xcshareddata/xcschemes/OABluetooth-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth.xcodeproj/xcshareddata/xcschemes/OABluetooth-Example.xcscheme -------------------------------------------------------------------------------- /Example/OABluetooth.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/OABluetooth.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/OABluetooth/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/OABluetooth/BlePeripheralViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth/BlePeripheralViewController.h -------------------------------------------------------------------------------- /Example/OABluetooth/BlePeripheralViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth/BlePeripheralViewController.m -------------------------------------------------------------------------------- /Example/OABluetooth/BleScanTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth/BleScanTableViewController.h -------------------------------------------------------------------------------- /Example/OABluetooth/BleScanTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth/BleScanTableViewController.m -------------------------------------------------------------------------------- /Example/OABluetooth/BleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth/BleViewController.h -------------------------------------------------------------------------------- /Example/OABluetooth/BleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth/BleViewController.m -------------------------------------------------------------------------------- /Example/OABluetooth/BleViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth/BleViewController.xib -------------------------------------------------------------------------------- /Example/OABluetooth/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/OABluetooth/OAAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth/OAAppDelegate.h -------------------------------------------------------------------------------- /Example/OABluetooth/OAAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth/OAAppDelegate.m -------------------------------------------------------------------------------- /Example/OABluetooth/OABluetooth-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth/OABluetooth-Info.plist -------------------------------------------------------------------------------- /Example/OABluetooth/OABluetooth-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth/OABluetooth-Prefix.pch -------------------------------------------------------------------------------- /Example/OABluetooth/ProgressButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth/ProgressButton.h -------------------------------------------------------------------------------- /Example/OABluetooth/ProgressButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth/ProgressButton.m -------------------------------------------------------------------------------- /Example/OABluetooth/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/OABluetooth/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/OABluetooth/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/OABluetooth.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Local Podspecs/OABluetooth.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/ObjcExtensionProperty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/ObjcExtensionProperty/LICENSE -------------------------------------------------------------------------------- /Example/Pods/ObjcExtensionProperty/ObjcExtensionProperty/Classes/ObjcExtensionProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/ObjcExtensionProperty/ObjcExtensionProperty/Classes/ObjcExtensionProperty.h -------------------------------------------------------------------------------- /Example/Pods/ObjcExtensionProperty/ObjcExtensionProperty/Classes/WeakReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/ObjcExtensionProperty/ObjcExtensionProperty/Classes/WeakReference.h -------------------------------------------------------------------------------- /Example/Pods/ObjcExtensionProperty/ObjcExtensionProperty/Classes/WeakReference.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/ObjcExtensionProperty/ObjcExtensionProperty/Classes/WeakReference.m -------------------------------------------------------------------------------- /Example/Pods/ObjcExtensionProperty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/ObjcExtensionProperty/README.md -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OABluetooth/OABluetooth-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/OABluetooth/OABluetooth-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OABluetooth/OABluetooth-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/OABluetooth/OABluetooth-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OABluetooth/OABluetooth-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/OABluetooth/OABluetooth-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OABluetooth/OABluetooth-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/OABluetooth/OABluetooth-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OABluetooth/OABluetooth.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/OABluetooth/OABluetooth.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/OABluetooth/OABluetooth.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/OABluetooth/OABluetooth.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ObjcExtensionProperty/ObjcExtensionProperty-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/ObjcExtensionProperty/ObjcExtensionProperty-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ObjcExtensionProperty/ObjcExtensionProperty-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/ObjcExtensionProperty/ObjcExtensionProperty-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ObjcExtensionProperty/ObjcExtensionProperty-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/ObjcExtensionProperty/ObjcExtensionProperty-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ObjcExtensionProperty/ObjcExtensionProperty-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/ObjcExtensionProperty/ObjcExtensionProperty-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ObjcExtensionProperty/ObjcExtensionProperty.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/ObjcExtensionProperty/ObjcExtensionProperty.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ObjcExtensionProperty/ObjcExtensionProperty.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/ObjcExtensionProperty/ObjcExtensionProperty.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OABluetooth_Example/Pods-OABluetooth_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/Pods-OABluetooth_Example/Pods-OABluetooth_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OABluetooth_Example/Pods-OABluetooth_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/Pods-OABluetooth_Example/Pods-OABluetooth_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OABluetooth_Example/Pods-OABluetooth_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/Pods-OABluetooth_Example/Pods-OABluetooth_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OABluetooth_Example/Pods-OABluetooth_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/Pods-OABluetooth_Example/Pods-OABluetooth_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OABluetooth_Example/Pods-OABluetooth_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/Pods-OABluetooth_Example/Pods-OABluetooth_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OABluetooth_Example/Pods-OABluetooth_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/Pods-OABluetooth_Example/Pods-OABluetooth_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OABluetooth_Example/Pods-OABluetooth_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/Pods-OABluetooth_Example/Pods-OABluetooth_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OABluetooth_Example/Pods-OABluetooth_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/Pods-OABluetooth_Example/Pods-OABluetooth_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OABluetooth_Example/Pods-OABluetooth_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/Pods-OABluetooth_Example/Pods-OABluetooth_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OABluetooth_Tests/Pods-OABluetooth_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/Pods-OABluetooth_Tests/Pods-OABluetooth_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OABluetooth_Tests/Pods-OABluetooth_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/Pods-OABluetooth_Tests/Pods-OABluetooth_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OABluetooth_Tests/Pods-OABluetooth_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/Pods-OABluetooth_Tests/Pods-OABluetooth_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OABluetooth_Tests/Pods-OABluetooth_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/Pods-OABluetooth_Tests/Pods-OABluetooth_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OABluetooth_Tests/Pods-OABluetooth_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/Pods-OABluetooth_Tests/Pods-OABluetooth_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OABluetooth_Tests/Pods-OABluetooth_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/Pods-OABluetooth_Tests/Pods-OABluetooth_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OABluetooth_Tests/Pods-OABluetooth_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/Pods-OABluetooth_Tests/Pods-OABluetooth_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-OABluetooth_Tests/Pods-OABluetooth_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Pods/Target Support Files/Pods-OABluetooth_Tests/Pods-OABluetooth_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/LICENSE -------------------------------------------------------------------------------- /OABluetooth.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/OABluetooth.podspec -------------------------------------------------------------------------------- /OABluetooth/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OABluetooth/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OABluetooth/Classes/Private/OABLPeripheralInterExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/OABluetooth/Classes/Private/OABLPeripheralInterExtension.h -------------------------------------------------------------------------------- /OABluetooth/Classes/Private/OABLPeripheralInterExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/OABluetooth/Classes/Private/OABLPeripheralInterExtension.m -------------------------------------------------------------------------------- /OABluetooth/Classes/Private/OABTCentralManager+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/OABluetooth/Classes/Private/OABTCentralManager+Private.h -------------------------------------------------------------------------------- /OABluetooth/Classes/Private/OABTDataWriteTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/OABluetooth/Classes/Private/OABTDataWriteTask.h -------------------------------------------------------------------------------- /OABluetooth/Classes/Private/OABTDataWriteTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/OABluetooth/Classes/Private/OABTDataWriteTask.m -------------------------------------------------------------------------------- /OABluetooth/Classes/Private/OABTDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/OABluetooth/Classes/Private/OABTDefines.h -------------------------------------------------------------------------------- /OABluetooth/Classes/Private/OABTDiscoverTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/OABluetooth/Classes/Private/OABTDiscoverTask.h -------------------------------------------------------------------------------- /OABluetooth/Classes/Private/OABTDiscoverTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/OABluetooth/Classes/Private/OABTDiscoverTask.m -------------------------------------------------------------------------------- /OABluetooth/Classes/Public/AssistObject/NSMutableDictionary+Appending.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/OABluetooth/Classes/Public/AssistObject/NSMutableDictionary+Appending.h -------------------------------------------------------------------------------- /OABluetooth/Classes/Public/AssistObject/NSMutableDictionary+Appending.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/OABluetooth/Classes/Public/AssistObject/NSMutableDictionary+Appending.m -------------------------------------------------------------------------------- /OABluetooth/Classes/Public/AssistObject/NSObject+MultiDelegates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/OABluetooth/Classes/Public/AssistObject/NSObject+MultiDelegates.h -------------------------------------------------------------------------------- /OABluetooth/Classes/Public/AssistObject/NSObject+MultiDelegates.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/OABluetooth/Classes/Public/AssistObject/NSObject+MultiDelegates.m -------------------------------------------------------------------------------- /OABluetooth/Classes/Public/CBPeripheral+OABLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/OABluetooth/Classes/Public/CBPeripheral+OABLE.h -------------------------------------------------------------------------------- /OABluetooth/Classes/Public/CBPeripheral+OABLE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/OABluetooth/Classes/Public/CBPeripheral+OABLE.m -------------------------------------------------------------------------------- /OABluetooth/Classes/Public/OABTCentralManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/OABluetooth/Classes/Public/OABTCentralManager.h -------------------------------------------------------------------------------- /OABluetooth/Classes/Public/OABTCentralManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/OABluetooth/Classes/Public/OABTCentralManager.m -------------------------------------------------------------------------------- /OABluetooth/Classes/Public/OABTPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/OABluetooth/Classes/Public/OABTPort.h -------------------------------------------------------------------------------- /OABluetooth/Classes/Public/OABTPort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/OABluetooth/Classes/Public/OABTPort.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Roen-Ro/OABluetooth/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------