Skip to content

Commit

Permalink
update min exposure time limit to 1 us
Browse files Browse the repository at this point in the history
  • Loading branch information
hongquanli committed Oct 22, 2020
1 parent 9480d6a commit 38d705e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion software/control/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def add_components(self):

# line 3: exposure time and analog gain associated with the current mode
self.entry_exposureTime = QDoubleSpinBox()
self.entry_exposureTime.setMinimum(0.01)
self.entry_exposureTime.setMinimum(0.001)
self.entry_exposureTime.setMaximum(4000)
self.entry_exposureTime.setSingleStep(1)
self.entry_exposureTime.setValue(0)
Expand Down

0 comments on commit 38d705e

Please sign in to comment.