Package org.openhab.binding.ehealth.protocol

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

Related Classes of org.openhab.binding.ehealth.protocol.EHealthDatagram

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.