Examples of EHealthDatagram


Examples of org.openhab.binding.ehealth.protocol.EHealthDatagram

      float ecg = Float.valueOf(defaultIfBlank(dataElements[8], "0"));
      int emg = Integer.valueOf(defaultIfBlank(dataElements[9], "0"));
     
      int glucose = Integer.valueOf(defaultIfBlank(dataElements[10], "0"));
     
      EHealthDatagram datagram = new EHealthDatagram(
        airFlow, temperature, skinConductance, skinResistance, skinConductanceVoltage, bpm, oxygenSaturation, bodyPosition, ecg, emg, glucose);
     
      logger.trace("new datagram '{}'", datagram);
     
      postUpdate(datagram);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.