Package com.movisens.smartgattlib.characteristics

Examples of com.movisens.smartgattlib.characteristics.HeartRateMeasurement


    // onCharacteristicChanged
    UUID characteristicUuid = null;// characteristic.getUuid();
    if (Characteristic.HEART_RATE_MEASUREMENT.equals(characteristicUuid)) {
      byte[] value = null;// characteristic.getValue();
      HeartRateMeasurement hrm = new HeartRateMeasurement(value);
      hrm.getHr();
      hrm.getEe();
    }
  }
View Full Code Here

TOP

Related Classes of com.movisens.smartgattlib.characteristics.HeartRateMeasurement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.