BakeoutController  0.1
A Controller for the Omicron vacuum chamber
ApplicationKernel.java
1 package kernel;
2 
5 
6 import java.util.List;
7 
12 final class ApplicationKernel implements Kernel, CommPortReporter {
13 
17  private PortDriver portDriver;
18 
23  public ApplicationKernel(PortDriver portDriver){
24  this.portDriver = portDriver;
25  }
26 
31  @Override public CommPortReporter getCommPortReporter(){
32  return this;
33  }
34 
38  @Override public List<String> getSerialPortNames(){
39  return this.portDriver.getSerialPortNames();
40  }
41 }
List< String > getSerialPortNames()
Git Repo