├── .gitignore ├── LICENSE ├── Plugins ├── Android │ ├── .gitignore │ ├── AndroidManifest.xml │ ├── build.xml │ ├── install.sh │ ├── project.properties │ └── src │ │ └── com │ │ └── bluetooth │ │ ├── BServiceUtil.java │ │ ├── IBService.java │ │ ├── cl │ │ ├── BCLService.java │ │ ├── BCLServiceBase.java │ │ ├── BCLServiceClient.java │ │ ├── BCLServiceListener.java │ │ └── BCLServiceServer.java │ │ └── le │ │ ├── BLEService.java │ │ ├── BLEServiceBase.java │ │ ├── BLEServiceCentral.java │ │ ├── BLEServiceCentralListener.java │ │ ├── BLEServicePeripheral.java │ │ └── BLEServicePeripheralListener.java ├── BCLService.cs ├── BLEService.cs └── iOS │ ├── BLEService.h │ ├── BLEService.mm │ ├── BLEServiceCentral.h │ ├── BLEServiceCentral.m │ ├── BLEServicePeripheral.h │ ├── BLEServicePeripheral.m │ └── install.sh ├── README.md ├── Rakefile └── dist └── unity-bluetooth.unitypackage /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugins/Android/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | gen 3 | local.properties 4 | obj 5 | proguard.cfg 6 | -------------------------------------------------------------------------------- /Plugins/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Plugins/Android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/Android/build.xml -------------------------------------------------------------------------------- /Plugins/Android/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/Android/install.sh -------------------------------------------------------------------------------- /Plugins/Android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/Android/project.properties -------------------------------------------------------------------------------- /Plugins/Android/src/com/bluetooth/BServiceUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/Android/src/com/bluetooth/BServiceUtil.java -------------------------------------------------------------------------------- /Plugins/Android/src/com/bluetooth/IBService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/Android/src/com/bluetooth/IBService.java -------------------------------------------------------------------------------- /Plugins/Android/src/com/bluetooth/cl/BCLService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/Android/src/com/bluetooth/cl/BCLService.java -------------------------------------------------------------------------------- /Plugins/Android/src/com/bluetooth/cl/BCLServiceBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/Android/src/com/bluetooth/cl/BCLServiceBase.java -------------------------------------------------------------------------------- /Plugins/Android/src/com/bluetooth/cl/BCLServiceClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/Android/src/com/bluetooth/cl/BCLServiceClient.java -------------------------------------------------------------------------------- /Plugins/Android/src/com/bluetooth/cl/BCLServiceListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/Android/src/com/bluetooth/cl/BCLServiceListener.java -------------------------------------------------------------------------------- /Plugins/Android/src/com/bluetooth/cl/BCLServiceServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/Android/src/com/bluetooth/cl/BCLServiceServer.java -------------------------------------------------------------------------------- /Plugins/Android/src/com/bluetooth/le/BLEService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/Android/src/com/bluetooth/le/BLEService.java -------------------------------------------------------------------------------- /Plugins/Android/src/com/bluetooth/le/BLEServiceBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/Android/src/com/bluetooth/le/BLEServiceBase.java -------------------------------------------------------------------------------- /Plugins/Android/src/com/bluetooth/le/BLEServiceCentral.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/Android/src/com/bluetooth/le/BLEServiceCentral.java -------------------------------------------------------------------------------- /Plugins/Android/src/com/bluetooth/le/BLEServiceCentralListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/Android/src/com/bluetooth/le/BLEServiceCentralListener.java -------------------------------------------------------------------------------- /Plugins/Android/src/com/bluetooth/le/BLEServicePeripheral.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/Android/src/com/bluetooth/le/BLEServicePeripheral.java -------------------------------------------------------------------------------- /Plugins/Android/src/com/bluetooth/le/BLEServicePeripheralListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/Android/src/com/bluetooth/le/BLEServicePeripheralListener.java -------------------------------------------------------------------------------- /Plugins/BCLService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/BCLService.cs -------------------------------------------------------------------------------- /Plugins/BLEService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/BLEService.cs -------------------------------------------------------------------------------- /Plugins/iOS/BLEService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/iOS/BLEService.h -------------------------------------------------------------------------------- /Plugins/iOS/BLEService.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/iOS/BLEService.mm -------------------------------------------------------------------------------- /Plugins/iOS/BLEServiceCentral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/iOS/BLEServiceCentral.h -------------------------------------------------------------------------------- /Plugins/iOS/BLEServiceCentral.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/iOS/BLEServiceCentral.m -------------------------------------------------------------------------------- /Plugins/iOS/BLEServicePeripheral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/iOS/BLEServicePeripheral.h -------------------------------------------------------------------------------- /Plugins/iOS/BLEServicePeripheral.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/iOS/BLEServicePeripheral.m -------------------------------------------------------------------------------- /Plugins/iOS/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Plugins/iOS/install.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/Rakefile -------------------------------------------------------------------------------- /dist/unity-bluetooth.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seiji/unity-bluetooth/HEAD/dist/unity-bluetooth.unitypackage --------------------------------------------------------------------------------