Blame view

PercTeacher/Sources/Main.java 399 Bytes
c5abccad   pfrison   PercTeacher inter...
1
2
3
4
  import javax.swing.JFrame;
  
  /* TODO list :
   *  - data to send to the arduino : do action, revert action
cd5544f2   pfrison   PercTeacher added...
5
   *  - textfields to tweak delays (+ button set to default)
c5abccad   pfrison   PercTeacher inter...
6
7
8
9
10
11
12
13
14
15
16
   */
  
  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);
  	}
  }