WarpPI/src/main/java/org/warp/picalculator/KeyboardTest.java
2018-04-02 00:47:33 +02:00

13 lines
412 B
Java
Executable File

package org.warp.picalculator;
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 {
new Main(new KeyboardDebugScreen(), new PIHardwareDisplay(), new CalculatorHUD(), args);
}
}