diff options
| -rw-r--r-- | altosui/AltosUI.java | 11 | 
1 files changed, 11 insertions, 0 deletions
diff --git a/altosui/AltosUI.java b/altosui/AltosUI.java index 27c41838..8399b7c8 100644 --- a/altosui/AltosUI.java +++ b/altosui/AltosUI.java @@ -210,6 +210,13 @@ public class AltosUI extends JFrame {  			});  		b.setToolTipText("Check flight readiness of altimeter in idle mode"); +		b = addButton(2, 2, "Launch Controller"); +		b.addActionListener(new ActionListener() { +				public void actionPerformed(ActionEvent e) { +					LaunchController(); +				} +			}); +  		setTitle("AltOS");  		pane.doLayout(); @@ -272,6 +279,10 @@ public class AltosUI extends JFrame {  		new AltosSiteMapPreload(AltosUI.this);  	} +	void LaunchController() { +		new AltosLaunchUI(AltosUI.this); +	} +  	/*  	 * Replay a flight from telemetry data  	 */  | 
