├── BLE_Framework ├── BLE.h ├── BLE.m └── BLEDefines.h ├── BlueRC.xcodeproj └── project.pbxproj ├── BlueRC ├── AppDelegate.h ├── AppDelegate.m ├── BlueRC-Info.plist ├── BlueRC-Prefix.pch ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── ViewController.h ├── ViewController.m ├── en.lproj │ ├── InfoPlist.strings │ └── MainStoryboard.storyboard └── main.m ├── JSAnalogueStick.h ├── JSAnalogueStick.m ├── analogue_bg.png ├── analogue_bg@2x.png ├── analogue_handle.png └── analogue_handle@2x.png /BLE_Framework/BLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/BLE_Framework/BLE.h -------------------------------------------------------------------------------- /BLE_Framework/BLE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/BLE_Framework/BLE.m -------------------------------------------------------------------------------- /BLE_Framework/BLEDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/BLE_Framework/BLEDefines.h -------------------------------------------------------------------------------- /BlueRC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/BlueRC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BlueRC/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/BlueRC/AppDelegate.h -------------------------------------------------------------------------------- /BlueRC/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/BlueRC/AppDelegate.m -------------------------------------------------------------------------------- /BlueRC/BlueRC-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/BlueRC/BlueRC-Info.plist -------------------------------------------------------------------------------- /BlueRC/BlueRC-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/BlueRC/BlueRC-Prefix.pch -------------------------------------------------------------------------------- /BlueRC/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/BlueRC/Default-568h@2x.png -------------------------------------------------------------------------------- /BlueRC/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/BlueRC/Default.png -------------------------------------------------------------------------------- /BlueRC/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/BlueRC/Default@2x.png -------------------------------------------------------------------------------- /BlueRC/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/BlueRC/ViewController.h -------------------------------------------------------------------------------- /BlueRC/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/BlueRC/ViewController.m -------------------------------------------------------------------------------- /BlueRC/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /BlueRC/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/BlueRC/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /BlueRC/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/BlueRC/main.m -------------------------------------------------------------------------------- /JSAnalogueStick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/JSAnalogueStick.h -------------------------------------------------------------------------------- /JSAnalogueStick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/JSAnalogueStick.m -------------------------------------------------------------------------------- /analogue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/analogue_bg.png -------------------------------------------------------------------------------- /analogue_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/analogue_bg@2x.png -------------------------------------------------------------------------------- /analogue_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/analogue_handle.png -------------------------------------------------------------------------------- /analogue_handle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottCheezem/BlueRCiOS/HEAD/analogue_handle@2x.png --------------------------------------------------------------------------------