Main.java 399 Bytes
import javax.swing.JFrame;

/* TODO list :
 *  - data to send to the arduino : do action, revert action
 *  - textfields to tweak delays (+ button set to default)
 */

public class Main {
	public static void main(String[] args) {
		ActionList actionList = new ActionList();
		
		Interface i = new Interface(actionList);
		i.setVisible(true);
		i.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
	}
}