BakeoutController-Basic  0.1
A Controller for the Omicron vacuum chamber
SerialPort.java
1 package kernel.serial_ports;
2 
3 import gnu.io.PortInUseException;
4 import gnu.io.UnsupportedCommOperationException;
5 
9 public interface SerialPort {
10 
16 
20  void open() throws PortInUseException, UnsupportedCommOperationException;
21 
25  void close();
26 
30  boolean isPortOpen();
31 
36 
41  void setConfig(PortConfiguration newConfig);
42 }
PortCommunicator getCommunicator()
PortConfiguration getConfig()
void setConfig(PortConfiguration newConfig)
Git Repo