BakeoutController-Basic  0.1
A Controller for the Omicron vacuum chamber
PortCommunicator.java
1 package kernel.serial_ports;
2 
3 import java.io.IOException;
4 import java.io.InputStream;
5 import java.io.OutputStream;
6 
10 public interface PortCommunicator {
11 
15  InputStream getInputStream() throws IOException;
16 
20  OutputStream getOutputStream() throws IOException;
21 }
Git Repo