├── Android ├── BluetoothArduino.java └── Example │ ├── AndroidManifest.xml │ ├── BluetoothArduino.java │ ├── Example.pde │ └── sketch.properties ├── Arduino ├── Example.ino ├── bluetooth.cpp └── bluetooth.h ├── LICENSE └── README.md /Android/BluetoothArduino.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrbrd/Android-with-Arduino-Bluetooth/HEAD/Android/BluetoothArduino.java -------------------------------------------------------------------------------- /Android/Example/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrbrd/Android-with-Arduino-Bluetooth/HEAD/Android/Example/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/Example/BluetoothArduino.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrbrd/Android-with-Arduino-Bluetooth/HEAD/Android/Example/BluetoothArduino.java -------------------------------------------------------------------------------- /Android/Example/Example.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrbrd/Android-with-Arduino-Bluetooth/HEAD/Android/Example/Example.pde -------------------------------------------------------------------------------- /Android/Example/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrbrd/Android-with-Arduino-Bluetooth/HEAD/Android/Example/sketch.properties -------------------------------------------------------------------------------- /Arduino/Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrbrd/Android-with-Arduino-Bluetooth/HEAD/Arduino/Example.ino -------------------------------------------------------------------------------- /Arduino/bluetooth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrbrd/Android-with-Arduino-Bluetooth/HEAD/Arduino/bluetooth.cpp -------------------------------------------------------------------------------- /Arduino/bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrbrd/Android-with-Arduino-Bluetooth/HEAD/Arduino/bluetooth.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrbrd/Android-with-Arduino-Bluetooth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrbrd/Android-with-Arduino-Bluetooth/HEAD/README.md --------------------------------------------------------------------------------