Examples of DigitalActorIO4


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

      sensor.init();
      sensor.setMbrick(this);
      logger.debug("{} addSubDevice {}", LoggerConstants.TFINIT, subId);
    }
    for (int i = 0; i < 4; i++) {
      DigitalActorIO4 actor = factory.createDigitalActorIO4();
      actor.setUid(getUid());
      String genericDeviceId = String.valueOf(i);
      String subId = "out" + genericDeviceId;
      actor.setSubId(subId);
      actor.setPin(i);
      actor.setGenericDeviceId(genericDeviceId);
      actor.init();
      actor.setMbrick(this);
      logger.debug("{} addSubDevice {}", LoggerConstants.TFINIT, subId);
    }
  }
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.