Examples of VCDeviceCurrent


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

    voltage.setUid(getUid());
    voltage.init();
    voltage.setMbrick(this);
    logger.debug("{} addSubDevice {}", LoggerConstants.TFINIT, subIdVoltage);

    VCDeviceCurrent current = factory.createVCDeviceCurrent();
    String subIdCurrent = "voltageCurrent_current";
    current.setSubId(subIdCurrent);
    current.setUid(getUid());
    current.init();
    current.setMbrick(this);
    logger.debug("{} addSubDevice {}", LoggerConstants.TFINIT, subIdCurrent);

    VCDevicePower power = factory.createVCDevicePower();
    String subIdPower = "voltageCurrent_power";
    power.setSubId(subIdPower);
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.