WarpPI/src/main/java/org/warp/picalculator/KeyboardTest.java

16 lines
533 B
Java
Executable File

package org.warp.picalculator;
import java.io.IOException;
import org.warp.picalculator.boot.Main;
import org.warp.picalculator.device.PIHardwareDisplay;
import org.warp.picalculator.gui.CalculatorHUD;
import org.warp.picalculator.gui.screens.KeyboardDebugScreen;
public class KeyboardTest {
public static void main(String[] args) throws InterruptedException, Error, IOException {
new PICalculator(new KeyboardDebugScreen(), new PIHardwareDisplay(), new CalculatorHUD(), Main.parseStartupArguments(args));
}
}