├── .gitignore ├── PeripheralModeTest ├── Default-568h@2x.png ├── PeripheralModeTest.xcodeproj │ └── project.pbxproj └── PeripheralModeTest │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── PeripheralModeTest-Info.plist │ ├── PeripheralModeTest-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── README.md └── Scan ├── Scan.xcodeproj └── project.pbxproj └── Scan ├── AppDelegate.h ├── AppDelegate.m ├── Scan-Info.plist ├── Scan-Prefix.pch ├── en.lproj ├── Credits.rtf ├── InfoPlist.strings └── MainMenu.xib └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/.gitignore -------------------------------------------------------------------------------- /PeripheralModeTest/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/PeripheralModeTest/Default-568h@2x.png -------------------------------------------------------------------------------- /PeripheralModeTest/PeripheralModeTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/PeripheralModeTest/PeripheralModeTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PeripheralModeTest/PeripheralModeTest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/PeripheralModeTest/PeripheralModeTest/AppDelegate.h -------------------------------------------------------------------------------- /PeripheralModeTest/PeripheralModeTest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/PeripheralModeTest/PeripheralModeTest/AppDelegate.m -------------------------------------------------------------------------------- /PeripheralModeTest/PeripheralModeTest/PeripheralModeTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/PeripheralModeTest/PeripheralModeTest/PeripheralModeTest-Info.plist -------------------------------------------------------------------------------- /PeripheralModeTest/PeripheralModeTest/PeripheralModeTest-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/PeripheralModeTest/PeripheralModeTest/PeripheralModeTest-Prefix.pch -------------------------------------------------------------------------------- /PeripheralModeTest/PeripheralModeTest/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/PeripheralModeTest/PeripheralModeTest/ViewController.h -------------------------------------------------------------------------------- /PeripheralModeTest/PeripheralModeTest/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/PeripheralModeTest/PeripheralModeTest/ViewController.m -------------------------------------------------------------------------------- /PeripheralModeTest/PeripheralModeTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /PeripheralModeTest/PeripheralModeTest/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/PeripheralModeTest/PeripheralModeTest/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /PeripheralModeTest/PeripheralModeTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/PeripheralModeTest/PeripheralModeTest/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/README.md -------------------------------------------------------------------------------- /Scan/Scan.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/Scan/Scan.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Scan/Scan/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/Scan/Scan/AppDelegate.h -------------------------------------------------------------------------------- /Scan/Scan/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/Scan/Scan/AppDelegate.m -------------------------------------------------------------------------------- /Scan/Scan/Scan-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/Scan/Scan/Scan-Info.plist -------------------------------------------------------------------------------- /Scan/Scan/Scan-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/Scan/Scan/Scan-Prefix.pch -------------------------------------------------------------------------------- /Scan/Scan/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/Scan/Scan/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Scan/Scan/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Scan/Scan/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/Scan/Scan/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Scan/Scan/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhaosT/CBPeripheralManager-Demo/HEAD/Scan/Scan/main.m --------------------------------------------------------------------------------