Back to project page BLE-Heart-rate-variability-demo.
The source code is released under:
MIT License
If you think the Android project BLE-Heart-rate-variability-demo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.sample.hrv.info; //from w w w. jav a2s. co m /** * Created by steven on 10/7/13. */ public abstract class BleInfoService { private final static String TAG = BleInfoService.class.getSimpleName(); protected BleInfoService() { } public abstract String getUUID(); public abstract String getName(); public abstract String getCharacteristicName(String uuid); }