Back to project page MovisensGattSensorExample.
The source code is released under:
GNU General Public License
If you think the Android project MovisensGattSensorExample 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.movisens.gattsensorexample.events; //from ww w .jav a 2 s . c om public class BLEEvent { private String mMessage = ""; public String getMessage() { return mMessage; } public BLEEvent(String message) { mMessage = message; } }