├── .travis.yml ├── BLEManager ├── BLEDeviceConnection.swift ├── BLEDeviceDiscoverServices.swift ├── BLEDeviceProperties.swift ├── BLEDeviceRSSI.swift ├── BLEDeviceScan.swift └── BLEManager.swift ├── BLE_Demo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── iqvis.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── waseemshahzad.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ └── BLE_Demo.xcscheme └── xcuserdata │ ├── iqvis.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── BLE_Demo.xcscheme │ │ └── xcschememanagement.plist │ └── waseemshahzad.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── BLE_Demo ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── BLE │ └── Module │ │ ├── BLEDeviceConnection.swift │ │ ├── BLEDeviceDiscoverServices.swift │ │ ├── BLEDeviceProperties.swift │ │ ├── BLEDeviceRSSI.swift │ │ ├── BLEDeviceScan.swift │ │ └── BLEManager.swift ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CharacteristicsViewController.swift ├── DeviceTableViewCell.swift ├── DeviceTableViewCell.xib ├── Info.plist ├── ServiceTableViewCell.swift ├── ServiceTableViewCell.xib ├── ServiceViewController.swift └── ViewController.swift ├── Docs └── README.md ├── LICENSE.rtf └── README.md /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/.travis.yml -------------------------------------------------------------------------------- /BLEManager/BLEDeviceConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLEManager/BLEDeviceConnection.swift -------------------------------------------------------------------------------- /BLEManager/BLEDeviceDiscoverServices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLEManager/BLEDeviceDiscoverServices.swift -------------------------------------------------------------------------------- /BLEManager/BLEDeviceProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLEManager/BLEDeviceProperties.swift -------------------------------------------------------------------------------- /BLEManager/BLEDeviceRSSI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLEManager/BLEDeviceRSSI.swift -------------------------------------------------------------------------------- /BLEManager/BLEDeviceScan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLEManager/BLEDeviceScan.swift -------------------------------------------------------------------------------- /BLEManager/BLEManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLEManager/BLEManager.swift -------------------------------------------------------------------------------- /BLE_Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BLE_Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BLE_Demo.xcodeproj/project.xcworkspace/xcuserdata/iqvis.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo.xcodeproj/project.xcworkspace/xcuserdata/iqvis.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /BLE_Demo.xcodeproj/project.xcworkspace/xcuserdata/waseemshahzad.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo.xcodeproj/project.xcworkspace/xcuserdata/waseemshahzad.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /BLE_Demo.xcodeproj/xcshareddata/xcschemes/BLE_Demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo.xcodeproj/xcshareddata/xcschemes/BLE_Demo.xcscheme -------------------------------------------------------------------------------- /BLE_Demo.xcodeproj/xcuserdata/iqvis.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo.xcodeproj/xcuserdata/iqvis.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /BLE_Demo.xcodeproj/xcuserdata/iqvis.xcuserdatad/xcschemes/BLE_Demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo.xcodeproj/xcuserdata/iqvis.xcuserdatad/xcschemes/BLE_Demo.xcscheme -------------------------------------------------------------------------------- /BLE_Demo.xcodeproj/xcuserdata/iqvis.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo.xcodeproj/xcuserdata/iqvis.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /BLE_Demo.xcodeproj/xcuserdata/waseemshahzad.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo.xcodeproj/xcuserdata/waseemshahzad.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /BLE_Demo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo/AppDelegate.swift -------------------------------------------------------------------------------- /BLE_Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /BLE_Demo/BLE/Module/BLEDeviceConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo/BLE/Module/BLEDeviceConnection.swift -------------------------------------------------------------------------------- /BLE_Demo/BLE/Module/BLEDeviceDiscoverServices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo/BLE/Module/BLEDeviceDiscoverServices.swift -------------------------------------------------------------------------------- /BLE_Demo/BLE/Module/BLEDeviceProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo/BLE/Module/BLEDeviceProperties.swift -------------------------------------------------------------------------------- /BLE_Demo/BLE/Module/BLEDeviceRSSI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo/BLE/Module/BLEDeviceRSSI.swift -------------------------------------------------------------------------------- /BLE_Demo/BLE/Module/BLEDeviceScan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo/BLE/Module/BLEDeviceScan.swift -------------------------------------------------------------------------------- /BLE_Demo/BLE/Module/BLEManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo/BLE/Module/BLEManager.swift -------------------------------------------------------------------------------- /BLE_Demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /BLE_Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /BLE_Demo/CharacteristicsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo/CharacteristicsViewController.swift -------------------------------------------------------------------------------- /BLE_Demo/DeviceTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo/DeviceTableViewCell.swift -------------------------------------------------------------------------------- /BLE_Demo/DeviceTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo/DeviceTableViewCell.xib -------------------------------------------------------------------------------- /BLE_Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo/Info.plist -------------------------------------------------------------------------------- /BLE_Demo/ServiceTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo/ServiceTableViewCell.swift -------------------------------------------------------------------------------- /BLE_Demo/ServiceTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo/ServiceTableViewCell.xib -------------------------------------------------------------------------------- /BLE_Demo/ServiceViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo/ServiceViewController.swift -------------------------------------------------------------------------------- /BLE_Demo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/BLE_Demo/ViewController.swift -------------------------------------------------------------------------------- /Docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/Docs/README.md -------------------------------------------------------------------------------- /LICENSE.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/LICENSE.rtf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqvis/BLEManager-iOS/HEAD/README.md --------------------------------------------------------------------------------