LogicGates/eu.heili/NotGate.java
lukas-heiligenbrunner 574c58f1c5 added nand not nor enxor exor gates
and two bsp from teacher.
2020-04-14 11:01:51 +02:00

15 lines
259 B
Java

public class NotGate extends LogicGate{
public NotGate() {
super(1);
}
public NotGate(DigitalInput inputval) {
super(inputval);
}
@Override
public boolean getOutput() {
return !getInput(0).getValue();
}
}