├── .gitignore ├── BluetoothKeyboard.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── ueda.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── BluetoothKeyboard.xcscheme │ └── xcschememanagement.plist ├── BluetoothKeyboard ├── AGAppDelegate.h ├── AGAppDelegate.m ├── AGKeyboardPeripheralManager.h ├── AGKeyboardPeripheralManager.m ├── Base.lproj │ └── MainMenu.xib ├── BluetoothKeyboard-Info.plist ├── BluetoothKeyboard-Prefix.pch ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── NSData+AGByteInitializer.h ├── NSData+AGByteInitializer.m ├── en.lproj │ ├── Credits.rtf │ └── InfoPlist.strings └── main.m ├── BluetoothKeyboardTests ├── BluetoothKeyboardTests-Info.plist ├── BluetoothKeyboardTests.m └── en.lproj │ └── InfoPlist.strings └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/.gitignore -------------------------------------------------------------------------------- /BluetoothKeyboard.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/BluetoothKeyboard.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BluetoothKeyboard.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/BluetoothKeyboard.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BluetoothKeyboard.xcodeproj/xcuserdata/ueda.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/BluetoothKeyboard.xcodeproj/xcuserdata/ueda.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /BluetoothKeyboard.xcodeproj/xcuserdata/ueda.xcuserdatad/xcschemes/BluetoothKeyboard.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/BluetoothKeyboard.xcodeproj/xcuserdata/ueda.xcuserdatad/xcschemes/BluetoothKeyboard.xcscheme -------------------------------------------------------------------------------- /BluetoothKeyboard.xcodeproj/xcuserdata/ueda.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/BluetoothKeyboard.xcodeproj/xcuserdata/ueda.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /BluetoothKeyboard/AGAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/BluetoothKeyboard/AGAppDelegate.h -------------------------------------------------------------------------------- /BluetoothKeyboard/AGAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/BluetoothKeyboard/AGAppDelegate.m -------------------------------------------------------------------------------- /BluetoothKeyboard/AGKeyboardPeripheralManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/BluetoothKeyboard/AGKeyboardPeripheralManager.h -------------------------------------------------------------------------------- /BluetoothKeyboard/AGKeyboardPeripheralManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/BluetoothKeyboard/AGKeyboardPeripheralManager.m -------------------------------------------------------------------------------- /BluetoothKeyboard/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/BluetoothKeyboard/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /BluetoothKeyboard/BluetoothKeyboard-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/BluetoothKeyboard/BluetoothKeyboard-Info.plist -------------------------------------------------------------------------------- /BluetoothKeyboard/BluetoothKeyboard-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/BluetoothKeyboard/BluetoothKeyboard-Prefix.pch -------------------------------------------------------------------------------- /BluetoothKeyboard/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/BluetoothKeyboard/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /BluetoothKeyboard/NSData+AGByteInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/BluetoothKeyboard/NSData+AGByteInitializer.h -------------------------------------------------------------------------------- /BluetoothKeyboard/NSData+AGByteInitializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/BluetoothKeyboard/NSData+AGByteInitializer.m -------------------------------------------------------------------------------- /BluetoothKeyboard/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/BluetoothKeyboard/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /BluetoothKeyboard/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /BluetoothKeyboard/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/BluetoothKeyboard/main.m -------------------------------------------------------------------------------- /BluetoothKeyboardTests/BluetoothKeyboardTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/BluetoothKeyboardTests/BluetoothKeyboardTests-Info.plist -------------------------------------------------------------------------------- /BluetoothKeyboardTests/BluetoothKeyboardTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/BluetoothKeyboardTests/BluetoothKeyboardTests.m -------------------------------------------------------------------------------- /BluetoothKeyboardTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelworm/BLKeyboard/HEAD/README.md --------------------------------------------------------------------------------