Skip to content

Commit

Permalink
Merge pull request #467 from MatthewPlayer/ScientificaDeviceAdaptor
Browse files Browse the repository at this point in the history
Fix Scientifica device adapter - Motion 2 Y moves moving incorrect distance
  • Loading branch information
marktsuchida authored Jun 17, 2024
2 parents ceb311c + a281ac6 commit de9d70a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions DeviceAdapters/Scientifica/Scientifica.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ int XYStage::Initialize()
if (baud == 9600)
{
stepSizeXUm_ = 0.1;
stepSizeYUm_ = 0.1;
// Step size
pAct = new CPropertyAction(this, &XYStage::OnStepSizeX);
CreateProperty("StepSizeX_um", "0.1", MM::Float, true, pAct);
Expand All @@ -151,6 +152,7 @@ int XYStage::Initialize()
else
{
stepSizeXUm_ = 0.01;
stepSizeYUm_ = 0.01;
// Step size
pAct = new CPropertyAction(this, &XYStage::OnStepSizeX);
CreateProperty("StepSizeX_um", "0.01", MM::Float, true, pAct);
Expand Down

0 comments on commit de9d70a

Please sign in to comment.