Examples of TinkerforgeValue


Examples of org.openhab.binding.tinkerforge.internal.types.TinkerforgeValue

   *
   * @param device The {@link MBaseDevice} device, which has a changed value.
   * @param notification The {@link Notification} about changes to the {@link Ecosystem}.
   */
  private void processValue(MBaseDevice device, Notification notification) {
    TinkerforgeValue newValue = (TinkerforgeValue) notification.getNewValue();
    String uid = device.getUid();
    String subId = null;
    if (device instanceof MSubDevice<?>) {
      subId = ((MSubDevice<?>) device).getSubId();
      logger.trace("{} Notifier found MSubDevice sensor value for: {}",
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.