summaryrefslogtreecommitdiff
path: root/tags/host/0.8.1/src/org/reprap/gui/CalibrateZAxis.java
blob: 6def36dc805952a9a0d800cfdd60038c5bd0e6d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
package org.reprap.gui;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.IOException;

import javax.swing.ButtonGroup;
import javax.swing.JButton;

import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JRadioButton;
import javax.swing.JTextField;

import org.reprap.devices.GenericStepperMotor;

/**
 *
 * Allow a user to adjust the Z axis positioning prior to production.
 *
 */

/**
* This code was edited or generated using CloudGarden's Jigloo
* SWT/Swing GUI Builder, which is free for non-commercial
* use. If Jigloo is being used commercially (ie, by a corporation,
* company or business for any purpose whatever) then you
* should purchase a license for each developer using Jigloo.
* Please visit www.cloudgarden.com for details.
* Use of Jigloo implies acceptance of these licensing terms.
* A COMMERCIAL LICENSE HAS NOT BEEN PURCHASED FOR
* THIS MACHINE, SO JIGLOO OR THIS CODE CANNOT BE USED
* LEGALLY FOR ANY CORPORATE OR COMMERCIAL PURPOSE.
*/
public class CalibrateZAxis extends javax.swing.JDialog {

	private JTextField message;
	private JRadioButton radio1step;
	private JRadioButton radio1mm;
	private JRadioButton radio10mm;
	private JButton buttonZInc;
	private JButton buttonZDec;
	private JRadioButton radio10step;
	private JRadioButton radio50step;
	private ButtonGroup stepSizeGroup;
	private JButton okButton;

	private GenericStepperMotor motor;
	private double scaleZ;
	private int motorPosition;
	private int motorSpeed;
	
	public CalibrateZAxis(JFrame frame, GenericStepperMotor motor, double scaleZ, int speed) throws IOException {
		super(frame);
		this.motor = motor;
		this.scaleZ = scaleZ;
		this.motorSpeed = speed;
		initGUI();
		motorPosition = motor.getPosition();
	}
	
	private void initGUI() {
		try {
			{
				{
					stepSizeGroup = new ButtonGroup();
				}
				okButton = new JButton();
				getContentPane().add(okButton);
				okButton.setText("Continue...");
				okButton.setBounds(105, 147, 105, 28);
				okButton.setMnemonic(java.awt.event.KeyEvent.VK_ENTER);
				okButton.addActionListener(new ActionListener() {
					public void actionPerformed(ActionEvent evt) {
						okButtonActionPerformed(evt);
					}
				});
			}
			{
				radio1step = new JRadioButton();
				getContentPane().add(radio1step);
				radio1step.setText("1 step");
				radio1step.setBounds(28, 14, 150, 28);
				stepSizeGroup.add(radio1step);
			}
			{
				radio10step = new JRadioButton();
				getContentPane().add(radio10step);
				radio10step.setText("10 steps");
				radio10step.setBounds(28, 35, 147, 28);
				stepSizeGroup.add(radio10step);
			}
			{
				radio50step = new JRadioButton();
				getContentPane().add(radio50step);
				radio50step.setText("50 steps");
				radio50step.setBounds(28, 56, 147, 28);
				stepSizeGroup.add(radio50step);
			}
			{
				radio1mm = new JRadioButton();
				getContentPane().add(radio1mm);
				radio1mm.setText("1mm");
				radio1mm.setBounds(28, 77, 147, 28);
				stepSizeGroup.add(radio1mm);
			}
			{
				radio10mm = new JRadioButton();
				getContentPane().add(radio10mm);
				radio10mm.setText("10mm");
				radio10mm.setBounds(28, 98, 147, 28);
				stepSizeGroup.add(radio10mm);
			}
			{
				buttonZInc = new JButton();
				getContentPane().add(buttonZInc);
				buttonZInc.setText("Increase Z");
				buttonZInc.setBounds(182, 28, 119, 28);
				buttonZInc.addActionListener(new ActionListener() {
					public void actionPerformed(ActionEvent evt) {
						buttonZIncActionPerformed(evt);
					}
				});
			}
			{
				buttonZDec = new JButton();
				getContentPane().add(buttonZDec);
				buttonZDec.setText("Decrease Z");
				buttonZDec.setBounds(182, 63, 119, 28);
				buttonZDec.addActionListener(new ActionListener() {
					public void actionPerformed(ActionEvent evt) {
						buttonZDecActionPerformed(evt);
					}
				});
			}
			{
				getContentPane().setLayout(null);
				this.setTitle("Calibrate Z axis");
			}
			this.setSize(316, 214);
			this.getRootPane().setDefaultButton(okButton);
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
	
	private double getStepCount() {
		double multiplier;
		if (radio1step.isSelected())
			multiplier = 1;
		else if (radio10step.isSelected())
			multiplier = 10;
		else if (radio50step.isSelected())
			multiplier = 50;
		else if (radio1mm.isSelected())
			multiplier = scaleZ;
		else if (radio10mm.isSelected())
			multiplier = scaleZ * 10.0;
		else
			multiplier = 1;
		return multiplier;
	}
	
	private void okButtonActionPerformed(ActionEvent evt) {
		synchronized(this) {
			notify();
		}
	}
	
	private void buttonZIncActionPerformed(ActionEvent evt) {
		motorPosition += getStepCount();
		setPosition();
	}
	
	private void buttonZDecActionPerformed(ActionEvent evt) {
		motorPosition -= getStepCount();
		setPosition();
	}
	
	private void setPosition() {
		try {
			motor.seek(motorSpeed, motorPosition);
		} catch (Exception ex) {
			JOptionPane.showMessageDialog(null, "Exception during calibration: " + ex);
		}
	}

}