Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
imagej-elphel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Board
Labels
Milestones
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Elphel
imagej-elphel
Commits
4667c49d
Commit
4667c49d
authored
Oct 20, 2014
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
working on goniometer manual control
parent
80f959fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
Goniometer.java
src/main/java/Goniometer.java
+8
-7
No files found.
src/main/java/Goniometer.java
View file @
4667c49d
...
...
@@ -105,8 +105,8 @@ horizontal axis:
private
final
String
[]
options
={
"Move to specified position"
,
"Move home"
,
"Tilt
to target
85 degrees"
,
"Tilt
from target
85 degrees"
,
"Tilt
up (from target)
85 degrees"
,
"Tilt
down (to target)
85 degrees"
,
"Rotate to clockwise 200 degrees"
,
"Rotate to counter-clockwise 200 degrees"
,
"set current position as new home"
};
...
...
@@ -133,8 +133,8 @@ horizontal axis:
GenericDialog
gd
=
new
GenericDialog
(
"User interrupt"
);
gd
.
addRadioButtonGroup
(
"Select action"
,
options
,
7
,
1
,
options
[
0
]);
gd
.
addNumericField
(
"Goniometer tilt angle"
,
currentTilt
,
1
,
5
,
"
degrees
"
);
gd
.
addNumericField
(
"Goniometer axial angle"
,
currentAxial
,
1
,
5
,
"
degrees
"
);
gd
.
addNumericField
(
"Goniometer tilt angle"
,
currentTilt
,
1
,
5
,
"
\u00b0 (positive - look up)
"
);
gd
.
addNumericField
(
"Goniometer axial angle"
,
currentAxial
,
1
,
5
,
"
\u00b0 (positive - CCW)
"
);
gd
.
addCheckbox
(
"Initialize goniometer motor driver"
,
needsInit
);
gd
.
showDialog
();
if
(
gd
.
wasCanceled
())
return
false
;
...
...
@@ -183,11 +183,11 @@ horizontal axis:
act
=
MOT_ACT
.
MOVE_SPEC
;
break
;
case
RCW200:
targetAxial
=
200.0
;
targetAxial
=
-
200.0
;
act
=
MOT_ACT
.
MOVE_SPEC
;
break
;
case
RCCW200:
targetAxial
=
-
200.0
;
targetAxial
=
200.0
;
act
=
MOT_ACT
.
MOVE_SPEC
;
break
;
default
:
...
...
@@ -208,7 +208,8 @@ horizontal axis:
axialMotorPosition
,
stopRequested
,
updateStatus
);
return
OK
;
if
(!
OK
)
System
.
out
.
println
(
"motorsMove()->false"
);
return
true
;
// OK; // So will re-open dialog even after abort
}
public
boolean
scanAndAcquire
(
double
targetAngleHorizontal
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment