Back to project page AndroidBleLib.
The source code is released under:
MIT License
If you think the Android project AndroidBleLib 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 io.hearty.ble.lib.data; //from ww w. ja v a2 s . com /** * Created by ejf3 on 5/11/14. */ public class HeartRate { private final int heartRate; public HeartRate(int heartRate) { this.heartRate = heartRate; } public int getHeartRate() { return heartRate; } }