├── .gitignore ├── AccessoryArduino └── accessory │ ├── accessory.pde │ └── libs │ ├── AndroidAccessory │ ├── AndroidAccessory.cpp │ └── AndroidAccessory.h │ └── USB_Host_Shield │ ├── Max3421e.cpp │ ├── Max3421e.h │ ├── Max3421e_constants.h │ ├── Max_LCD.cpp │ ├── Max_LCD.h │ ├── README │ ├── Usb.cpp │ ├── Usb.h │ └── ch9.h ├── AccessoryController ├── AndroidManifest.xml ├── build.gradle ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── ic_launcher.png │ │ ├── player.png │ │ └── ruby.png │ ├── drawable-ldpi │ │ ├── ic_launcher.png │ │ ├── player.png │ │ └── ruby.png │ ├── drawable-mdpi │ │ ├── ic_launcher.png │ │ ├── player.png │ │ └── ruby.png │ ├── drawable-nodpi │ │ ├── background_holo_dark.jpg │ │ └── demokit_splash.png │ ├── layout │ │ ├── main.xml │ │ ├── no_device.xml │ │ └── no_device_bluetooth.xml │ ├── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── xml │ │ └── accessory_filter.xml └── src │ └── com │ └── examples │ └── accessory │ └── controller │ ├── GameActivity.java │ ├── MainBluetoothActivity.java │ └── MainUsbActivity.java ├── BluetoothAudioProxy ├── AndroidManifest.xml ├── build.gradle ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── ic_launcher.png │ │ └── ic_notification.png │ ├── drawable-mdpi │ │ ├── ic_launcher.png │ │ └── ic_notification.png │ ├── drawable-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_notification.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── example │ └── BluetoothAudioProxy │ ├── BluetoothActivity.java │ └── HeadsetService.java ├── BluetoothGatt ├── AndroidManifest.xml ├── build.gradle ├── ic_launcher-web.png ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ ├── activity_main.xml │ │ └── item_beacon_list.xml │ ├── menu │ │ └── main.xml │ ├── values-v21 │ │ ├── config.xml │ │ └── styles.xml │ └── values │ │ ├── config.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── example │ └── bluetoothgatt │ ├── AdRecord.java │ ├── BeaconKitKatActivity.java │ ├── BeaconLollipopActivity.java │ ├── BeaconView.java │ ├── MainActivity.java │ ├── SensorTagData.java │ └── TemperatureBeacon.java ├── BluetoothGattPeripheral ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── example │ │ └── android │ │ └── bluetoothgattperipheral │ │ ├── ClientActivity.java │ │ ├── DeviceProfile.java │ │ └── PeripheralActivity.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── layout │ └── activity_client.xml │ ├── menu │ └── scan.xml │ ├── values-v21 │ └── styles.xml │ └── values │ ├── strings.xml │ └── styles.xml ├── Documentation ├── HID Usage Tables.pdf ├── HID.pdf ├── HID_POS.pdf ├── InputShield_DataSheet.pdf └── Simplified Description of USB Device Enumeration.pdf ├── LICENSE ├── README.md ├── ScaleMonitor ├── AndroidManifest.xml ├── build.gradle ├── project.properties ├── res │ ├── layout │ │ └── launcher.xml │ ├── values │ │ └── strings.xml │ └── xml │ │ └── device_filter.xml └── src │ └── com │ └── examples │ └── usb │ └── scalemonitor │ └── ScaleActivity.java ├── UsbMonitor ├── AndroidManifest.xml ├── build.gradle ├── project.properties ├── res │ ├── drawable │ │ └── icon.png │ ├── layout │ │ └── main.xml │ ├── values │ │ └── strings.xml │ └── xml │ │ └── device_filter.xml └── src │ └── com │ └── example │ └── UsbMonitor │ └── USBActivity.java ├── bluetoothadvertiser ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── example │ │ └── android │ │ └── bluetoothadvertiser │ │ └── AdvertiserActivity.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── layout │ └── activity_advertiser.xml │ ├── values-v21 │ └── styles.xml │ └── values │ ├── strings.xml │ └── styles.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /AccessoryArduino/accessory/accessory.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryArduino/accessory/accessory.pde -------------------------------------------------------------------------------- /AccessoryArduino/accessory/libs/AndroidAccessory/AndroidAccessory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryArduino/accessory/libs/AndroidAccessory/AndroidAccessory.cpp -------------------------------------------------------------------------------- /AccessoryArduino/accessory/libs/AndroidAccessory/AndroidAccessory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryArduino/accessory/libs/AndroidAccessory/AndroidAccessory.h -------------------------------------------------------------------------------- /AccessoryArduino/accessory/libs/USB_Host_Shield/Max3421e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryArduino/accessory/libs/USB_Host_Shield/Max3421e.cpp -------------------------------------------------------------------------------- /AccessoryArduino/accessory/libs/USB_Host_Shield/Max3421e.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryArduino/accessory/libs/USB_Host_Shield/Max3421e.h -------------------------------------------------------------------------------- /AccessoryArduino/accessory/libs/USB_Host_Shield/Max3421e_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryArduino/accessory/libs/USB_Host_Shield/Max3421e_constants.h -------------------------------------------------------------------------------- /AccessoryArduino/accessory/libs/USB_Host_Shield/Max_LCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryArduino/accessory/libs/USB_Host_Shield/Max_LCD.cpp -------------------------------------------------------------------------------- /AccessoryArduino/accessory/libs/USB_Host_Shield/Max_LCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryArduino/accessory/libs/USB_Host_Shield/Max_LCD.h -------------------------------------------------------------------------------- /AccessoryArduino/accessory/libs/USB_Host_Shield/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryArduino/accessory/libs/USB_Host_Shield/README -------------------------------------------------------------------------------- /AccessoryArduino/accessory/libs/USB_Host_Shield/Usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryArduino/accessory/libs/USB_Host_Shield/Usb.cpp -------------------------------------------------------------------------------- /AccessoryArduino/accessory/libs/USB_Host_Shield/Usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryArduino/accessory/libs/USB_Host_Shield/Usb.h -------------------------------------------------------------------------------- /AccessoryArduino/accessory/libs/USB_Host_Shield/ch9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryArduino/accessory/libs/USB_Host_Shield/ch9.h -------------------------------------------------------------------------------- /AccessoryController/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/AndroidManifest.xml -------------------------------------------------------------------------------- /AccessoryController/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/build.gradle -------------------------------------------------------------------------------- /AccessoryController/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/project.properties -------------------------------------------------------------------------------- /AccessoryController/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AccessoryController/res/drawable-hdpi/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/res/drawable-hdpi/player.png -------------------------------------------------------------------------------- /AccessoryController/res/drawable-hdpi/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/res/drawable-hdpi/ruby.png -------------------------------------------------------------------------------- /AccessoryController/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /AccessoryController/res/drawable-ldpi/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/res/drawable-ldpi/player.png -------------------------------------------------------------------------------- /AccessoryController/res/drawable-ldpi/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/res/drawable-ldpi/ruby.png -------------------------------------------------------------------------------- /AccessoryController/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AccessoryController/res/drawable-mdpi/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/res/drawable-mdpi/player.png -------------------------------------------------------------------------------- /AccessoryController/res/drawable-mdpi/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/res/drawable-mdpi/ruby.png -------------------------------------------------------------------------------- /AccessoryController/res/drawable-nodpi/background_holo_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/res/drawable-nodpi/background_holo_dark.jpg -------------------------------------------------------------------------------- /AccessoryController/res/drawable-nodpi/demokit_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/res/drawable-nodpi/demokit_splash.png -------------------------------------------------------------------------------- /AccessoryController/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/res/layout/main.xml -------------------------------------------------------------------------------- /AccessoryController/res/layout/no_device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/res/layout/no_device.xml -------------------------------------------------------------------------------- /AccessoryController/res/layout/no_device_bluetooth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/res/layout/no_device_bluetooth.xml -------------------------------------------------------------------------------- /AccessoryController/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/res/values/attrs.xml -------------------------------------------------------------------------------- /AccessoryController/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/res/values/colors.xml -------------------------------------------------------------------------------- /AccessoryController/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/res/values/strings.xml -------------------------------------------------------------------------------- /AccessoryController/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/res/values/styles.xml -------------------------------------------------------------------------------- /AccessoryController/res/xml/accessory_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/res/xml/accessory_filter.xml -------------------------------------------------------------------------------- /AccessoryController/src/com/examples/accessory/controller/GameActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/src/com/examples/accessory/controller/GameActivity.java -------------------------------------------------------------------------------- /AccessoryController/src/com/examples/accessory/controller/MainBluetoothActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/src/com/examples/accessory/controller/MainBluetoothActivity.java -------------------------------------------------------------------------------- /AccessoryController/src/com/examples/accessory/controller/MainUsbActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/AccessoryController/src/com/examples/accessory/controller/MainUsbActivity.java -------------------------------------------------------------------------------- /BluetoothAudioProxy/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothAudioProxy/AndroidManifest.xml -------------------------------------------------------------------------------- /BluetoothAudioProxy/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothAudioProxy/build.gradle -------------------------------------------------------------------------------- /BluetoothAudioProxy/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothAudioProxy/proguard-project.txt -------------------------------------------------------------------------------- /BluetoothAudioProxy/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothAudioProxy/project.properties -------------------------------------------------------------------------------- /BluetoothAudioProxy/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothAudioProxy/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /BluetoothAudioProxy/res/drawable-hdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothAudioProxy/res/drawable-hdpi/ic_notification.png -------------------------------------------------------------------------------- /BluetoothAudioProxy/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothAudioProxy/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /BluetoothAudioProxy/res/drawable-mdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothAudioProxy/res/drawable-mdpi/ic_notification.png -------------------------------------------------------------------------------- /BluetoothAudioProxy/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothAudioProxy/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BluetoothAudioProxy/res/drawable-xhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothAudioProxy/res/drawable-xhdpi/ic_notification.png -------------------------------------------------------------------------------- /BluetoothAudioProxy/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothAudioProxy/res/layout/main.xml -------------------------------------------------------------------------------- /BluetoothAudioProxy/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothAudioProxy/res/values/strings.xml -------------------------------------------------------------------------------- /BluetoothAudioProxy/src/com/example/BluetoothAudioProxy/BluetoothActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothAudioProxy/src/com/example/BluetoothAudioProxy/BluetoothActivity.java -------------------------------------------------------------------------------- /BluetoothAudioProxy/src/com/example/BluetoothAudioProxy/HeadsetService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothAudioProxy/src/com/example/BluetoothAudioProxy/HeadsetService.java -------------------------------------------------------------------------------- /BluetoothGatt/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/AndroidManifest.xml -------------------------------------------------------------------------------- /BluetoothGatt/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/build.gradle -------------------------------------------------------------------------------- /BluetoothGatt/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/ic_launcher-web.png -------------------------------------------------------------------------------- /BluetoothGatt/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /BluetoothGatt/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /BluetoothGatt/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BluetoothGatt/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BluetoothGatt/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/res/layout/activity_main.xml -------------------------------------------------------------------------------- /BluetoothGatt/res/layout/item_beacon_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/res/layout/item_beacon_list.xml -------------------------------------------------------------------------------- /BluetoothGatt/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/res/menu/main.xml -------------------------------------------------------------------------------- /BluetoothGatt/res/values-v21/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/res/values-v21/config.xml -------------------------------------------------------------------------------- /BluetoothGatt/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/res/values-v21/styles.xml -------------------------------------------------------------------------------- /BluetoothGatt/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/res/values/config.xml -------------------------------------------------------------------------------- /BluetoothGatt/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/res/values/dimens.xml -------------------------------------------------------------------------------- /BluetoothGatt/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/res/values/strings.xml -------------------------------------------------------------------------------- /BluetoothGatt/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/res/values/styles.xml -------------------------------------------------------------------------------- /BluetoothGatt/src/com/example/bluetoothgatt/AdRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/src/com/example/bluetoothgatt/AdRecord.java -------------------------------------------------------------------------------- /BluetoothGatt/src/com/example/bluetoothgatt/BeaconKitKatActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/src/com/example/bluetoothgatt/BeaconKitKatActivity.java -------------------------------------------------------------------------------- /BluetoothGatt/src/com/example/bluetoothgatt/BeaconLollipopActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/src/com/example/bluetoothgatt/BeaconLollipopActivity.java -------------------------------------------------------------------------------- /BluetoothGatt/src/com/example/bluetoothgatt/BeaconView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/src/com/example/bluetoothgatt/BeaconView.java -------------------------------------------------------------------------------- /BluetoothGatt/src/com/example/bluetoothgatt/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/src/com/example/bluetoothgatt/MainActivity.java -------------------------------------------------------------------------------- /BluetoothGatt/src/com/example/bluetoothgatt/SensorTagData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/src/com/example/bluetoothgatt/SensorTagData.java -------------------------------------------------------------------------------- /BluetoothGatt/src/com/example/bluetoothgatt/TemperatureBeacon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGatt/src/com/example/bluetoothgatt/TemperatureBeacon.java -------------------------------------------------------------------------------- /BluetoothGattPeripheral/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /BluetoothGattPeripheral/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGattPeripheral/build.gradle -------------------------------------------------------------------------------- /BluetoothGattPeripheral/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGattPeripheral/proguard-rules.pro -------------------------------------------------------------------------------- /BluetoothGattPeripheral/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGattPeripheral/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /BluetoothGattPeripheral/src/main/java/com/example/android/bluetoothgattperipheral/ClientActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGattPeripheral/src/main/java/com/example/android/bluetoothgattperipheral/ClientActivity.java -------------------------------------------------------------------------------- /BluetoothGattPeripheral/src/main/java/com/example/android/bluetoothgattperipheral/DeviceProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGattPeripheral/src/main/java/com/example/android/bluetoothgattperipheral/DeviceProfile.java -------------------------------------------------------------------------------- /BluetoothGattPeripheral/src/main/java/com/example/android/bluetoothgattperipheral/PeripheralActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGattPeripheral/src/main/java/com/example/android/bluetoothgattperipheral/PeripheralActivity.java -------------------------------------------------------------------------------- /BluetoothGattPeripheral/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGattPeripheral/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /BluetoothGattPeripheral/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGattPeripheral/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /BluetoothGattPeripheral/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGattPeripheral/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BluetoothGattPeripheral/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGattPeripheral/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /BluetoothGattPeripheral/src/main/res/layout/activity_client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGattPeripheral/src/main/res/layout/activity_client.xml -------------------------------------------------------------------------------- /BluetoothGattPeripheral/src/main/res/menu/scan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGattPeripheral/src/main/res/menu/scan.xml -------------------------------------------------------------------------------- /BluetoothGattPeripheral/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGattPeripheral/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /BluetoothGattPeripheral/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGattPeripheral/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /BluetoothGattPeripheral/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/BluetoothGattPeripheral/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Documentation/HID Usage Tables.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/Documentation/HID Usage Tables.pdf -------------------------------------------------------------------------------- /Documentation/HID.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/Documentation/HID.pdf -------------------------------------------------------------------------------- /Documentation/HID_POS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/Documentation/HID_POS.pdf -------------------------------------------------------------------------------- /Documentation/InputShield_DataSheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/Documentation/InputShield_DataSheet.pdf -------------------------------------------------------------------------------- /Documentation/Simplified Description of USB Device Enumeration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/Documentation/Simplified Description of USB Device Enumeration.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/README.md -------------------------------------------------------------------------------- /ScaleMonitor/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/ScaleMonitor/AndroidManifest.xml -------------------------------------------------------------------------------- /ScaleMonitor/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/ScaleMonitor/build.gradle -------------------------------------------------------------------------------- /ScaleMonitor/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/ScaleMonitor/project.properties -------------------------------------------------------------------------------- /ScaleMonitor/res/layout/launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/ScaleMonitor/res/layout/launcher.xml -------------------------------------------------------------------------------- /ScaleMonitor/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/ScaleMonitor/res/values/strings.xml -------------------------------------------------------------------------------- /ScaleMonitor/res/xml/device_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/ScaleMonitor/res/xml/device_filter.xml -------------------------------------------------------------------------------- /ScaleMonitor/src/com/examples/usb/scalemonitor/ScaleActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/ScaleMonitor/src/com/examples/usb/scalemonitor/ScaleActivity.java -------------------------------------------------------------------------------- /UsbMonitor/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/UsbMonitor/AndroidManifest.xml -------------------------------------------------------------------------------- /UsbMonitor/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/UsbMonitor/build.gradle -------------------------------------------------------------------------------- /UsbMonitor/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/UsbMonitor/project.properties -------------------------------------------------------------------------------- /UsbMonitor/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/UsbMonitor/res/drawable/icon.png -------------------------------------------------------------------------------- /UsbMonitor/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/UsbMonitor/res/layout/main.xml -------------------------------------------------------------------------------- /UsbMonitor/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/UsbMonitor/res/values/strings.xml -------------------------------------------------------------------------------- /UsbMonitor/res/xml/device_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/UsbMonitor/res/xml/device_filter.xml -------------------------------------------------------------------------------- /UsbMonitor/src/com/example/UsbMonitor/USBActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/UsbMonitor/src/com/example/UsbMonitor/USBActivity.java -------------------------------------------------------------------------------- /bluetoothadvertiser/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /bluetoothadvertiser/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/bluetoothadvertiser/build.gradle -------------------------------------------------------------------------------- /bluetoothadvertiser/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/bluetoothadvertiser/proguard-rules.pro -------------------------------------------------------------------------------- /bluetoothadvertiser/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/bluetoothadvertiser/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /bluetoothadvertiser/src/main/java/com/example/android/bluetoothadvertiser/AdvertiserActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/bluetoothadvertiser/src/main/java/com/example/android/bluetoothadvertiser/AdvertiserActivity.java -------------------------------------------------------------------------------- /bluetoothadvertiser/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/bluetoothadvertiser/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bluetoothadvertiser/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/bluetoothadvertiser/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bluetoothadvertiser/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/bluetoothadvertiser/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bluetoothadvertiser/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/bluetoothadvertiser/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bluetoothadvertiser/src/main/res/layout/activity_advertiser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/bluetoothadvertiser/src/main/res/layout/activity_advertiser.xml -------------------------------------------------------------------------------- /bluetoothadvertiser/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/bluetoothadvertiser/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /bluetoothadvertiser/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/bluetoothadvertiser/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /bluetoothadvertiser/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/bluetoothadvertiser/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devunwired/accessory-samples/HEAD/settings.gradle --------------------------------------------------------------------------------