Provides classes for driving serial controlled microscope stages. By default this package allow you to drive PRIOR OPTI SCAN stages: X,Y,Z azis only. It should work also with PRIOR PRO SCAN STAGES but it's never been tested. Other stages will be availabe as soon as company release stage serial protocols. Howhever you colud develop the missed piece of software inside this package to drive other stages.
This software is JDK 1.1 compatible. THIS PACKAGE REQUIRE SUN COMMAPI 2.0 LIBRARY TO WORK!

Classes inside this package allow you to:

Stage control window

This display a basic stage control window. From it you can: move the three axis step by step, (of size wanted) in any direction, bookmark a position, reset the current position, calibrate the stage axis X(Y) (by stage movement).

To disply a Stage control window you can write your own java program containing the following line to get the window appear on your monitor:

StageCtrlDialog dialogo=new StageCtrlDialog();

This is the only one code line of StageCtrlDialog main program class. That fact makes the program startable from command line: For example:
javaw -mx80m -cp vfsc.jar;comm.jar; vfstagecontroller.StageCtrlDialog
will display a Stage control window with default parameters.

Control stages from java

StageController class allow the programmer to control the stage from java code. Basically you have just to do the following three things: If openConnection() method return true this means the connection is right estabilished and hence you can control the stages by Stagecontroller methods otherwise means that something went wrong with connection. Control connection parameters and try again.

Package Specification

(none)

Related Documentation

The following classes are used by the vfstagecontroller classes. For overviews, tutorials, examples, guides, and tool documentation, please see:
@since JDK1.1