├── .gitignore ├── .npmignore ├── CHANGES.txt ├── LICENSE.txt ├── README.md ├── examples ├── Chat │ ├── .cordova │ │ └── config.json │ ├── .gitignore │ ├── Arduino │ │ ├── Chat_BLEMini │ │ │ └── Chat_BLEMini.ino │ │ ├── Chat_SeeedShield │ │ │ └── Chat_SeeedShield.ino │ │ └── Chat_Sparkfun │ │ │ └── Chat_Sparkfun.ino │ ├── README.md │ ├── config.xml │ ├── merges │ │ └── .gitignore │ └── www │ │ ├── css │ │ └── index.css │ │ ├── index.html │ │ └── js │ │ └── index.js ├── Counter │ ├── .cordova │ │ └── config.json │ ├── .gitignore │ ├── Arduino │ │ └── Counter │ │ │ └── Counter.ino │ ├── README.md │ ├── platforms │ │ └── .gitignore │ ├── plugins │ │ └── .gitignore │ └── www │ │ ├── config.xml │ │ ├── css │ │ └── index.css │ │ ├── index.html │ │ └── js │ │ └── index.js ├── LED │ ├── .cordova │ │ └── config.json │ ├── .gitignore │ ├── Arduino │ │ ├── PhoneGapLED │ │ │ └── PhoneGapLED.ino │ │ ├── PhoneGapLED_BluefruitLE │ │ │ └── PhoneGapLED_BluefruitLE.ino │ │ └── PhoneGapLED_Seeed │ │ │ └── PhoneGapLED_Seeed.ino │ ├── BluefruitLE.fzz │ ├── BluefruitLE.png │ ├── README.md │ ├── blue.jpg │ ├── green.jpg │ ├── platforms │ │ └── .gitignore │ ├── plugins │ │ └── .gitignore │ └── www │ │ ├── config.xml │ │ ├── css │ │ ├── index.css │ │ └── topcoat-mobile-light.min.css │ │ ├── font │ │ ├── LICENSE.txt │ │ ├── SourceCodePro-Black.otf │ │ ├── SourceCodePro-Bold.otf │ │ ├── SourceCodePro-ExtraLight.otf │ │ ├── SourceCodePro-Light.otf │ │ ├── SourceCodePro-Regular.otf │ │ ├── SourceCodePro-Semibold.otf │ │ ├── SourceSansPro-Black.otf │ │ ├── SourceSansPro-BlackIt.otf │ │ ├── SourceSansPro-Bold.otf │ │ ├── SourceSansPro-BoldIt.otf │ │ ├── SourceSansPro-ExtraLight.otf │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ ├── SourceSansPro-It.otf │ │ ├── SourceSansPro-Light.otf │ │ ├── SourceSansPro-LightIt.otf │ │ ├── SourceSansPro-Regular.otf │ │ ├── SourceSansPro-Semibold.otf │ │ └── SourceSansPro-SemiboldIt.otf │ │ ├── index.html │ │ └── js │ │ ├── index.js │ │ ├── jquery-1.9.1.min.js │ │ └── underscore-min.js └── SimpleSerial │ ├── .cordova │ └── config.json │ ├── README.md │ ├── platforms │ └── .gitignore │ ├── plugins │ └── .gitignore │ └── www │ ├── config.xml │ ├── index.html │ └── js │ └── index.js ├── package.json ├── plugin.xml ├── src ├── android │ └── com │ │ └── megster │ │ └── cordova │ │ ├── BluetoothSerial.java │ │ └── BluetoothSerialService.java ├── browser │ └── bluetoothSerial.js ├── ios │ ├── BLE.h │ ├── BLE.m │ ├── BLEDefines.h │ ├── CBPeripheral+BTSExtensions.h │ ├── CBPeripheral+BTSExtensions.m │ ├── MEGBluetoothSerial.h │ └── MEGBluetoothSerial.m └── wp │ ├── BluetoothConnectionManager.cs │ └── BluetoothSerial.cs └── www └── bluetoothSerial.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | examples 2 | -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/README.md -------------------------------------------------------------------------------- /examples/Chat/.cordova/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/Chat/.cordova/config.json -------------------------------------------------------------------------------- /examples/Chat/.gitignore: -------------------------------------------------------------------------------- 1 | plugins 2 | platforms 3 | -------------------------------------------------------------------------------- /examples/Chat/Arduino/Chat_BLEMini/Chat_BLEMini.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/Chat/Arduino/Chat_BLEMini/Chat_BLEMini.ino -------------------------------------------------------------------------------- /examples/Chat/Arduino/Chat_SeeedShield/Chat_SeeedShield.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/Chat/Arduino/Chat_SeeedShield/Chat_SeeedShield.ino -------------------------------------------------------------------------------- /examples/Chat/Arduino/Chat_Sparkfun/Chat_Sparkfun.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/Chat/Arduino/Chat_Sparkfun/Chat_Sparkfun.ino -------------------------------------------------------------------------------- /examples/Chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/Chat/README.md -------------------------------------------------------------------------------- /examples/Chat/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/Chat/config.xml -------------------------------------------------------------------------------- /examples/Chat/merges/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Chat/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/Chat/www/css/index.css -------------------------------------------------------------------------------- /examples/Chat/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/Chat/www/index.html -------------------------------------------------------------------------------- /examples/Chat/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/Chat/www/js/index.js -------------------------------------------------------------------------------- /examples/Counter/.cordova/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/Counter/.cordova/config.json -------------------------------------------------------------------------------- /examples/Counter/.gitignore: -------------------------------------------------------------------------------- 1 | platforms 2 | plugins 3 | -------------------------------------------------------------------------------- /examples/Counter/Arduino/Counter/Counter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/Counter/Arduino/Counter/Counter.ino -------------------------------------------------------------------------------- /examples/Counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/Counter/README.md -------------------------------------------------------------------------------- /examples/Counter/platforms/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Counter/plugins/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Counter/www/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/Counter/www/config.xml -------------------------------------------------------------------------------- /examples/Counter/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/Counter/www/css/index.css -------------------------------------------------------------------------------- /examples/Counter/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/Counter/www/index.html -------------------------------------------------------------------------------- /examples/Counter/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/Counter/www/js/index.js -------------------------------------------------------------------------------- /examples/LED/.cordova/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/.cordova/config.json -------------------------------------------------------------------------------- /examples/LED/.gitignore: -------------------------------------------------------------------------------- 1 | platforms 2 | plugins 3 | -------------------------------------------------------------------------------- /examples/LED/Arduino/PhoneGapLED/PhoneGapLED.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/Arduino/PhoneGapLED/PhoneGapLED.ino -------------------------------------------------------------------------------- /examples/LED/Arduino/PhoneGapLED_BluefruitLE/PhoneGapLED_BluefruitLE.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/Arduino/PhoneGapLED_BluefruitLE/PhoneGapLED_BluefruitLE.ino -------------------------------------------------------------------------------- /examples/LED/Arduino/PhoneGapLED_Seeed/PhoneGapLED_Seeed.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/Arduino/PhoneGapLED_Seeed/PhoneGapLED_Seeed.ino -------------------------------------------------------------------------------- /examples/LED/BluefruitLE.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/BluefruitLE.fzz -------------------------------------------------------------------------------- /examples/LED/BluefruitLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/BluefruitLE.png -------------------------------------------------------------------------------- /examples/LED/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/README.md -------------------------------------------------------------------------------- /examples/LED/blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/blue.jpg -------------------------------------------------------------------------------- /examples/LED/green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/green.jpg -------------------------------------------------------------------------------- /examples/LED/platforms/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/LED/plugins/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/LED/www/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/config.xml -------------------------------------------------------------------------------- /examples/LED/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/css/index.css -------------------------------------------------------------------------------- /examples/LED/www/css/topcoat-mobile-light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/css/topcoat-mobile-light.min.css -------------------------------------------------------------------------------- /examples/LED/www/font/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/font/LICENSE.txt -------------------------------------------------------------------------------- /examples/LED/www/font/SourceCodePro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/font/SourceCodePro-Black.otf -------------------------------------------------------------------------------- /examples/LED/www/font/SourceCodePro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/font/SourceCodePro-Bold.otf -------------------------------------------------------------------------------- /examples/LED/www/font/SourceCodePro-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/font/SourceCodePro-ExtraLight.otf -------------------------------------------------------------------------------- /examples/LED/www/font/SourceCodePro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/font/SourceCodePro-Light.otf -------------------------------------------------------------------------------- /examples/LED/www/font/SourceCodePro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/font/SourceCodePro-Regular.otf -------------------------------------------------------------------------------- /examples/LED/www/font/SourceCodePro-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/font/SourceCodePro-Semibold.otf -------------------------------------------------------------------------------- /examples/LED/www/font/SourceSansPro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/font/SourceSansPro-Black.otf -------------------------------------------------------------------------------- /examples/LED/www/font/SourceSansPro-BlackIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/font/SourceSansPro-BlackIt.otf -------------------------------------------------------------------------------- /examples/LED/www/font/SourceSansPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/font/SourceSansPro-Bold.otf -------------------------------------------------------------------------------- /examples/LED/www/font/SourceSansPro-BoldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/font/SourceSansPro-BoldIt.otf -------------------------------------------------------------------------------- /examples/LED/www/font/SourceSansPro-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/font/SourceSansPro-ExtraLight.otf -------------------------------------------------------------------------------- /examples/LED/www/font/SourceSansPro-ExtraLightIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/font/SourceSansPro-ExtraLightIt.otf -------------------------------------------------------------------------------- /examples/LED/www/font/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/font/SourceSansPro-It.otf -------------------------------------------------------------------------------- /examples/LED/www/font/SourceSansPro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/font/SourceSansPro-Light.otf -------------------------------------------------------------------------------- /examples/LED/www/font/SourceSansPro-LightIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/font/SourceSansPro-LightIt.otf -------------------------------------------------------------------------------- /examples/LED/www/font/SourceSansPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/font/SourceSansPro-Regular.otf -------------------------------------------------------------------------------- /examples/LED/www/font/SourceSansPro-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/font/SourceSansPro-Semibold.otf -------------------------------------------------------------------------------- /examples/LED/www/font/SourceSansPro-SemiboldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/font/SourceSansPro-SemiboldIt.otf -------------------------------------------------------------------------------- /examples/LED/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/index.html -------------------------------------------------------------------------------- /examples/LED/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/js/index.js -------------------------------------------------------------------------------- /examples/LED/www/js/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/js/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /examples/LED/www/js/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/LED/www/js/underscore-min.js -------------------------------------------------------------------------------- /examples/SimpleSerial/.cordova/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/SimpleSerial/.cordova/config.json -------------------------------------------------------------------------------- /examples/SimpleSerial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/SimpleSerial/README.md -------------------------------------------------------------------------------- /examples/SimpleSerial/platforms/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/SimpleSerial/plugins/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/SimpleSerial/www/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/SimpleSerial/www/config.xml -------------------------------------------------------------------------------- /examples/SimpleSerial/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/SimpleSerial/www/index.html -------------------------------------------------------------------------------- /examples/SimpleSerial/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/examples/SimpleSerial/www/js/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/com/megster/cordova/BluetoothSerial.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/src/android/com/megster/cordova/BluetoothSerial.java -------------------------------------------------------------------------------- /src/android/com/megster/cordova/BluetoothSerialService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/src/android/com/megster/cordova/BluetoothSerialService.java -------------------------------------------------------------------------------- /src/browser/bluetoothSerial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/src/browser/bluetoothSerial.js -------------------------------------------------------------------------------- /src/ios/BLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/src/ios/BLE.h -------------------------------------------------------------------------------- /src/ios/BLE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/src/ios/BLE.m -------------------------------------------------------------------------------- /src/ios/BLEDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/src/ios/BLEDefines.h -------------------------------------------------------------------------------- /src/ios/CBPeripheral+BTSExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/src/ios/CBPeripheral+BTSExtensions.h -------------------------------------------------------------------------------- /src/ios/CBPeripheral+BTSExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/src/ios/CBPeripheral+BTSExtensions.m -------------------------------------------------------------------------------- /src/ios/MEGBluetoothSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/src/ios/MEGBluetoothSerial.h -------------------------------------------------------------------------------- /src/ios/MEGBluetoothSerial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/src/ios/MEGBluetoothSerial.m -------------------------------------------------------------------------------- /src/wp/BluetoothConnectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/src/wp/BluetoothConnectionManager.cs -------------------------------------------------------------------------------- /src/wp/BluetoothSerial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/src/wp/BluetoothSerial.cs -------------------------------------------------------------------------------- /www/bluetoothSerial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/don/BluetoothSerial/HEAD/www/bluetoothSerial.js --------------------------------------------------------------------------------