Skip to content

Commit

Permalink
Merge pull request #27 from PyMoDAQ/hotfix/units
Browse files Browse the repository at this point in the history
Hotfix/units
  • Loading branch information
seb5g authored Nov 21, 2024
2 parents 6b9f29b + 637e5b5 commit 03b0f79
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class DAQ_Move_Elliptec(DAQ_Move_base):
hardware library
"""
_controller_units = 'whatever'
_controller_units = ''
is_multiaxes = True
axes_names = ['0']
_epsilon = 0.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class DAQ_Move_KinesisFlipper(DAQ_Move_base):
"""
"""
_controller_units = 'degrees'
_controller_units = ''
_epsilon = 0.05

is_multiaxes = False
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class DAQ_Move_KinesisIntegratedStepper(DAQ_Move_base):
"""
"""
_controller_units = 'degrees'
_controller_units = '°'
_epsilon = 0.05

is_multiaxes = False
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class DAQ_Move_MFF101_pylablib(DAQ_Move_base):
*params* dictionnary
=============== ==============
"""
_controller_units = 'binary position'
_controller_units = ''

_dvc = Thorlabs.list_kinesis_devices()
serialnumbers = [d[0] for d in _dvc if d[1] == 'APT Filter Flipper']
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class DAQ_Move_PRM1Z8_pylablib(DAQ_Move_base):
*params* dictionnary
=============== ==============
"""
_controller_units = 'deg'
_controller_units = '°'
is_multiaxes = False
_stage_names = []
_epsilon = 0.005
Expand Down
2 changes: 1 addition & 1 deletion src/pymodaq_plugins_thorlabs/resources/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.0
1.4.1

0 comments on commit 03b0f79

Please sign in to comment.