Examples of Electrode


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

   * @generated NOT
   */
  public void initSubDevices() {
    ModelFactory factory = ModelFactory.eINSTANCE;
    for (int i = 0; i < 12; i++) {
      Electrode electrode = factory.createElectrode();
      electrode.setUid(getUid());
      String subId = "electrode" + i;
      electrode.setSubId(subId);
      electrode.setPin(i);
      electrode.init();
      electrode.setMbrick(this);
      logger.debug("{} addSubDevice {}", LoggerConstants.TFINIT, subId);
    }
    Proximity proximity = factory.createProximity();
    proximity.setUid(getUid());
    String subId = "proximity";
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.