Package org.openhab.binding.ehealth.protocol

Examples of org.openhab.binding.ehealth.protocol.SerialConnector


    if (config != null) {
      serialPort = (String) config.get("serialPort");
    }
   
    serialConnector = new SerialConnector(serialPort);
    try {
      serialConnector.connect();
      serialConnector.addSerialEventProcessor(this);
    } catch (EHealthException e) {
      logger.error("Error connecting to serial port '{}'", serialPort, e);
View Full Code Here

TOP

Related Classes of org.openhab.binding.ehealth.protocol.SerialConnector

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.