AnalogIn, DigitalIn, DigitalOut, Simulation, and Card classes all working correctly so far

This commit is contained in:
Patrick McDonagh
2017-02-01 14:24:35 -06:00
commit a7073aae9c
46 changed files with 2240 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package com.henrypump.poc;
/**
* Created by patrickjmcd on 1/31/17.
*/
public class LPStatus extends LPPair{
private int status;
public LPStatus(double position, double load, int status) {
super(position, load);
this.status = status;
}
public int getStatus() {
return status;
}
}