Package org.openhab.binding.tellstick.internal.JNA

Examples of org.openhab.binding.tellstick.internal.JNA.DataType


    sensorEventHandler = new JNA.CLibrary.TDSensorEvent() {
      @Override
      public void invoke(String protocol, String model, int deviceId, int dataType, Pointer value, int timeStamp,
          int callbackId, Pointer context) throws SupportedMethodsException {
        try {
          DataType m = DataType.getDataTypeId(dataType);
          notifySensorListeners(deviceId, protocol, model, m, value.getString(0));
        } catch (Exception e) {
          logger.error("Failed in TDSensorEvent", e);
        }
      }
View Full Code Here

TOP

Related Classes of org.openhab.binding.tellstick.internal.JNA.DataType

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.