Package com.neophob.sematrix.core.output

Examples of com.neophob.sematrix.core.output.Tpm2


        break;
      case UDP:
        output = new UdpDevice(applicationConfig);
        break;
      case TPM2:
        output = new Tpm2(applicationConfig);
        break;
      case TPM2NET:
        output = new Tpm2Net(applicationConfig);               
        break;
      default:
View Full Code Here


    //HINT: on windows you need to (for example) use COM1, com1 will not work! (case sensitive)
    String serialPort = OutputHelper.getSerialPortName(ph.getTpm2Device().toUpperCase());
    this.initialized = false;
    this.supportConnectionState = true;
    try {
      tpm2 = new Tpm2Serial(serialPort, baud);
      this.initialized = true;
     
      LOG.log(Level.INFO, "Initialized TPM2 serial device v{0}, target port: {1}, Resolution: {2}/{3}"
          new Object[] { VERSION, serialPort, this.matrixData.getDeviceXSize(), this.matrixData.getDeviceYSize()}
      );
View Full Code Here

TOP

Related Classes of com.neophob.sematrix.core.output.Tpm2

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.