Skip to content

Commit

Permalink
update command
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelburgos committed May 31, 2024
1 parent 57c766f commit 28afb45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions obi_software/gui_modules/test_calibrate.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
QSpinBox, QComboBox, QHBoxLayout, QVBoxLayout, QPushButton)
import qasync
from qasync import asyncSlot, asyncClose, QApplication, QEventLoop
from ..stream_interface import Connection, StreamVectorPixelCommand
from ..stream_interface import Connection, StreamVectorPixelCommand, OutputMode


class DACSettings(QHBoxLayout):
Expand Down Expand Up @@ -56,7 +56,7 @@ async def setvals(self):
x_coord, y_coord = self.getvals()
print(f"{x_coord=}, {y_coord=}")
await self.conn.transfer(StreamVectorPixelCommand(
x_coord = x_coord, y_coord = y_coord, dwell=1))
x_coord = x_coord, y_coord = y_coord, dwell=1), output_mode=OutputMode.NoOutput)



Expand Down

0 comments on commit 28afb45

Please sign in to comment.