Package org.openhab.binding.tinkerforge.internal.model

Examples of org.openhab.binding.tinkerforge.internal.model.MBrickletMultiTouch


              LoggerConstants.TFINIT, getUid(), getSubId(), getPin());
          setDisableElectrode(true);
        }
      }
    }
    MBrickletMultiTouch bricklet = getMbrick();
    if (bricklet == null) {
      logger.error("{} No bricklet found for MultiTouchDevice: {}:{} ", LoggerConstants.TFINIT,
          getUid(), subId);
    } else {
      try {
        BrickletMultiTouch brickletMultiTouch = bricklet.getTinkerforgeDevice();
        if (getDisableElectrode() != null && getDisableElectrode()) {
          logger.debug("{} MultiTouchDevice uid {} subid {} disabling electrode {}",
              LoggerConstants.TFINIT, getUid(), getSubId(), getPin());
          getEnabledA().set(false);
          int electrodeConfig = brickletMultiTouch.getElectrodeConfig();
View Full Code Here

TOP

Related Classes of org.openhab.binding.tinkerforge.internal.model.MBrickletMultiTouch

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.