├── .gitignore ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── LICENSE ├── README.md ├── ic_launcher-web.png ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── layout │ ├── actionbar_indeterminate_progress.xml │ ├── demo_opengl.xml │ ├── gatt_services_characteristics.xml │ ├── listitem_characteristic.xml │ ├── listitem_device.xml │ └── listitem_service.xml ├── menu │ ├── gatt_scan.xml │ └── gatt_services.xml └── values │ └── strings.xml └── src └── com └── sample └── hrv ├── BleService.java ├── BluetoothGattExecutor.java ├── DeviceScanActivity.java ├── DeviceServicesActivity.java ├── adapters ├── BleDevicesAdapter.java └── BleServicesAdapter.java ├── demo ├── DemoGLSurfaceView.java ├── DemoHeartRateSensorActivity.java └── DemoSensorActivity.java ├── info ├── BleDeviceInfoService.java ├── BleGapService.java ├── BleGattService.java ├── BleInfoService.java └── BleInfoServices.java └── sensor ├── BleHeartRateSensor.java ├── BleSensor.java ├── BleSensorUtils.java ├── BleSensors.java └── BleTestSensor.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/README.md -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/actionbar_indeterminate_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/res/layout/actionbar_indeterminate_progress.xml -------------------------------------------------------------------------------- /res/layout/demo_opengl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/res/layout/demo_opengl.xml -------------------------------------------------------------------------------- /res/layout/gatt_services_characteristics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/res/layout/gatt_services_characteristics.xml -------------------------------------------------------------------------------- /res/layout/listitem_characteristic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/res/layout/listitem_characteristic.xml -------------------------------------------------------------------------------- /res/layout/listitem_device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/res/layout/listitem_device.xml -------------------------------------------------------------------------------- /res/layout/listitem_service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/res/layout/listitem_service.xml -------------------------------------------------------------------------------- /res/menu/gatt_scan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/res/menu/gatt_scan.xml -------------------------------------------------------------------------------- /res/menu/gatt_services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/res/menu/gatt_services.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /src/com/sample/hrv/BleService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/src/com/sample/hrv/BleService.java -------------------------------------------------------------------------------- /src/com/sample/hrv/BluetoothGattExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/src/com/sample/hrv/BluetoothGattExecutor.java -------------------------------------------------------------------------------- /src/com/sample/hrv/DeviceScanActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/src/com/sample/hrv/DeviceScanActivity.java -------------------------------------------------------------------------------- /src/com/sample/hrv/DeviceServicesActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/src/com/sample/hrv/DeviceServicesActivity.java -------------------------------------------------------------------------------- /src/com/sample/hrv/adapters/BleDevicesAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/src/com/sample/hrv/adapters/BleDevicesAdapter.java -------------------------------------------------------------------------------- /src/com/sample/hrv/adapters/BleServicesAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/src/com/sample/hrv/adapters/BleServicesAdapter.java -------------------------------------------------------------------------------- /src/com/sample/hrv/demo/DemoGLSurfaceView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/src/com/sample/hrv/demo/DemoGLSurfaceView.java -------------------------------------------------------------------------------- /src/com/sample/hrv/demo/DemoHeartRateSensorActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/src/com/sample/hrv/demo/DemoHeartRateSensorActivity.java -------------------------------------------------------------------------------- /src/com/sample/hrv/demo/DemoSensorActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/src/com/sample/hrv/demo/DemoSensorActivity.java -------------------------------------------------------------------------------- /src/com/sample/hrv/info/BleDeviceInfoService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/src/com/sample/hrv/info/BleDeviceInfoService.java -------------------------------------------------------------------------------- /src/com/sample/hrv/info/BleGapService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/src/com/sample/hrv/info/BleGapService.java -------------------------------------------------------------------------------- /src/com/sample/hrv/info/BleGattService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/src/com/sample/hrv/info/BleGattService.java -------------------------------------------------------------------------------- /src/com/sample/hrv/info/BleInfoService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/src/com/sample/hrv/info/BleInfoService.java -------------------------------------------------------------------------------- /src/com/sample/hrv/info/BleInfoServices.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/src/com/sample/hrv/info/BleInfoServices.java -------------------------------------------------------------------------------- /src/com/sample/hrv/sensor/BleHeartRateSensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/src/com/sample/hrv/sensor/BleHeartRateSensor.java -------------------------------------------------------------------------------- /src/com/sample/hrv/sensor/BleSensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/src/com/sample/hrv/sensor/BleSensor.java -------------------------------------------------------------------------------- /src/com/sample/hrv/sensor/BleSensorUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/src/com/sample/hrv/sensor/BleSensorUtils.java -------------------------------------------------------------------------------- /src/com/sample/hrv/sensor/BleSensors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/src/com/sample/hrv/sensor/BleSensors.java -------------------------------------------------------------------------------- /src/com/sample/hrv/sensor/BleTestSensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oerjanti/BLE-Heart-rate-variability-demo/HEAD/src/com/sample/hrv/sensor/BleTestSensor.java --------------------------------------------------------------------------------