zaber-motion 7.8.1__py3-none-win_arm64.whl → 7.8.2__py3-none-win_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- zaber_motion/ascii/setting_constants.py +25 -0
- zaber_motion/library.py +1 -1
- zaber_motion/units.py +11 -6
- zaber_motion/version.py +1 -1
- {zaber_motion-7.8.1.dist-info → zaber_motion-7.8.2.dist-info}/METADATA +1 -1
- {zaber_motion-7.8.1.dist-info → zaber_motion-7.8.2.dist-info}/RECORD +10 -10
- zaber_motion_bindings/zaber-motion-core-windows-arm64.dll +0 -0
- {zaber_motion-7.8.1.dist-info → zaber_motion-7.8.2.dist-info}/WHEEL +0 -0
- {zaber_motion-7.8.1.dist-info → zaber_motion-7.8.2.dist-info}/licenses/LICENSE.txt +0 -0
- {zaber_motion-7.8.1.dist-info → zaber_motion-7.8.2.dist-info}/top_level.txt +0 -0
|
@@ -9,6 +9,11 @@ class SettingConstants:
|
|
|
9
9
|
"""
|
|
10
10
|
ACCEL = "accel"
|
|
11
11
|
|
|
12
|
+
"""
|
|
13
|
+
Autodetect Coil Mode.
|
|
14
|
+
"""
|
|
15
|
+
AUTODETECT_COIL_MODE = "autodetect.coil.mode"
|
|
16
|
+
|
|
12
17
|
"""
|
|
13
18
|
Brake Mode.
|
|
14
19
|
"""
|
|
@@ -24,6 +29,26 @@ class SettingConstants:
|
|
|
24
29
|
"""
|
|
25
30
|
CALIBRATION_TYPE = "calibration.type"
|
|
26
31
|
|
|
32
|
+
"""
|
|
33
|
+
Cia 402 Controlword.
|
|
34
|
+
"""
|
|
35
|
+
CIA_402_CONTROLWORD = "cia402.controlword"
|
|
36
|
+
|
|
37
|
+
"""
|
|
38
|
+
Cia 402 Modes.
|
|
39
|
+
"""
|
|
40
|
+
CIA_402_MODES = "cia402.modes"
|
|
41
|
+
|
|
42
|
+
"""
|
|
43
|
+
Cia 402 Modes Display.
|
|
44
|
+
"""
|
|
45
|
+
CIA_402_MODES_DISPLAY = "cia402.modes.display"
|
|
46
|
+
|
|
47
|
+
"""
|
|
48
|
+
Cia 402 Statusword.
|
|
49
|
+
"""
|
|
50
|
+
CIA_402_STATUSWORD = "cia402.statusword"
|
|
51
|
+
|
|
27
52
|
"""
|
|
28
53
|
Cloop Continuous Enable.
|
|
29
54
|
"""
|
zaber_motion/library.py
CHANGED
zaber_motion/units.py
CHANGED
|
@@ -130,12 +130,12 @@ class Units(Enum):
|
|
|
130
130
|
FREQUENCY_NANOHERTZ = 'Frequency:nanohertz'
|
|
131
131
|
|
|
132
132
|
|
|
133
|
-
UnitsAndLiterals = Union[Units, Literal["m", "cm", "mm", "µm", "um", "nm", "in", "m/s", "cm/s", "mm/s", "µm/s", "um/s", "nm/s", "in/s", "m/s²", "m/s^2", "cm/s²", "cm/s^2", "mm/s²", "mm/s^2", "µm/s²", "um/s^2", "nm/s²", "nm/s^2", "in/s²", "in/s^2", "°", "deg", "rad", "°/s", "deg/s", "rad/s", "°/s²", "deg/s^2", "rad/s²", "rad/s^2", "%", "s", "ms", "µs", "us", "GHz", "MHz", "kHz", "Hz", "mHz", "µHz", "uHz", "nHz"]]
|
|
134
|
-
LengthUnits = Union[Units, Literal["m", "cm", "mm", "µm", "um", "nm", "in", "°", "deg", "rad"]]
|
|
135
|
-
VelocityUnits = Union[Units, Literal["m/s", "cm/s", "mm/s", "µm/s", "um/s", "nm/s", "in/s", "°/s", "deg/s", "rad/s"]]
|
|
136
|
-
AccelerationUnits = Union[Units, Literal["m/s²", "m/s^2", "cm/s²", "cm/s^2", "mm/s²", "mm/s^2", "µm/s²", "um/s^2", "nm/s²", "nm/s^2", "in/s²", "in/s^2", "°/s²", "deg/s^2", "rad/s²", "rad/s^2"]]
|
|
137
|
-
TimeUnits = Union[Units, Literal["s", "ms", "µs", "us"]]
|
|
138
|
-
FrequencyUnits = Union[Units, Literal["GHz", "MHz", "kHz", "Hz", "mHz", "µHz", "uHz", "nHz"]]
|
|
133
|
+
UnitsAndLiterals = Union[Units, Literal["m", "cm", "mm", "µm", "um", "μm", "nm", "in", "m/s", "cm/s", "mm/s", "µm/s", "um/s", "μm/s", "nm/s", "in/s", "m/s²", "m/s^2", "cm/s²", "cm/s^2", "mm/s²", "mm/s^2", "µm/s²", "um/s^2", "μm/s²", "nm/s²", "nm/s^2", "in/s²", "in/s^2", "°", "deg", "rad", "°/s", "deg/s", "rad/s", "°/s²", "deg/s^2", "rad/s²", "rad/s^2", "%", "s", "ms", "µs", "us", "μs", "GHz", "MHz", "kHz", "Hz", "mHz", "µHz", "uHz", "μHz", "nHz"]]
|
|
134
|
+
LengthUnits = Union[Units, Literal["m", "cm", "mm", "µm", "um", "μm", "nm", "in", "°", "deg", "rad"]]
|
|
135
|
+
VelocityUnits = Union[Units, Literal["m/s", "cm/s", "mm/s", "µm/s", "um/s", "μm/s", "nm/s", "in/s", "°/s", "deg/s", "rad/s"]]
|
|
136
|
+
AccelerationUnits = Union[Units, Literal["m/s²", "m/s^2", "cm/s²", "cm/s^2", "mm/s²", "mm/s^2", "µm/s²", "um/s^2", "μm/s²", "nm/s²", "nm/s^2", "in/s²", "in/s^2", "°/s²", "deg/s^2", "rad/s²", "rad/s^2"]]
|
|
137
|
+
TimeUnits = Union[Units, Literal["s", "ms", "µs", "us", "μs"]]
|
|
138
|
+
FrequencyUnits = Union[Units, Literal["GHz", "MHz", "kHz", "Hz", "mHz", "µHz", "uHz", "μHz", "nHz"]]
|
|
139
139
|
|
|
140
140
|
LITERALS_TO_UNITS = {
|
|
141
141
|
"m": Units.LENGTH_METRES,
|
|
@@ -143,6 +143,7 @@ LITERALS_TO_UNITS = {
|
|
|
143
143
|
"mm": Units.LENGTH_MILLIMETRES,
|
|
144
144
|
"µm": Units.LENGTH_MICROMETRES,
|
|
145
145
|
"um": Units.LENGTH_MICROMETRES,
|
|
146
|
+
"μm": Units.LENGTH_MICROMETRES,
|
|
146
147
|
"nm": Units.LENGTH_NANOMETRES,
|
|
147
148
|
"in": Units.LENGTH_INCHES,
|
|
148
149
|
"m/s": Units.VELOCITY_METRES_PER_SECOND,
|
|
@@ -150,6 +151,7 @@ LITERALS_TO_UNITS = {
|
|
|
150
151
|
"mm/s": Units.VELOCITY_MILLIMETRES_PER_SECOND,
|
|
151
152
|
"µm/s": Units.VELOCITY_MICROMETRES_PER_SECOND,
|
|
152
153
|
"um/s": Units.VELOCITY_MICROMETRES_PER_SECOND,
|
|
154
|
+
"μm/s": Units.VELOCITY_MICROMETRES_PER_SECOND,
|
|
153
155
|
"nm/s": Units.VELOCITY_NANOMETRES_PER_SECOND,
|
|
154
156
|
"in/s": Units.VELOCITY_INCHES_PER_SECOND,
|
|
155
157
|
"m/s²": Units.ACCELERATION_METRES_PER_SECOND_SQUARED,
|
|
@@ -160,6 +162,7 @@ LITERALS_TO_UNITS = {
|
|
|
160
162
|
"mm/s^2": Units.ACCELERATION_MILLIMETRES_PER_SECOND_SQUARED,
|
|
161
163
|
"µm/s²": Units.ACCELERATION_MICROMETRES_PER_SECOND_SQUARED,
|
|
162
164
|
"um/s^2": Units.ACCELERATION_MICROMETRES_PER_SECOND_SQUARED,
|
|
165
|
+
"μm/s²": Units.ACCELERATION_MICROMETRES_PER_SECOND_SQUARED,
|
|
163
166
|
"nm/s²": Units.ACCELERATION_NANOMETRES_PER_SECOND_SQUARED,
|
|
164
167
|
"nm/s^2": Units.ACCELERATION_NANOMETRES_PER_SECOND_SQUARED,
|
|
165
168
|
"in/s²": Units.ACCELERATION_INCHES_PER_SECOND_SQUARED,
|
|
@@ -179,6 +182,7 @@ LITERALS_TO_UNITS = {
|
|
|
179
182
|
"ms": Units.TIME_MILLISECONDS,
|
|
180
183
|
"µs": Units.TIME_MICROSECONDS,
|
|
181
184
|
"us": Units.TIME_MICROSECONDS,
|
|
185
|
+
"μs": Units.TIME_MICROSECONDS,
|
|
182
186
|
"GHz": Units.FREQUENCY_GIGAHERTZ,
|
|
183
187
|
"MHz": Units.FREQUENCY_MEGAHERTZ,
|
|
184
188
|
"kHz": Units.FREQUENCY_KILOHERTZ,
|
|
@@ -186,6 +190,7 @@ LITERALS_TO_UNITS = {
|
|
|
186
190
|
"mHz": Units.FREQUENCY_MILLIHERTZ,
|
|
187
191
|
"µHz": Units.FREQUENCY_MICROHERTZ,
|
|
188
192
|
"uHz": Units.FREQUENCY_MICROHERTZ,
|
|
193
|
+
"μHz": Units.FREQUENCY_MICROHERTZ,
|
|
189
194
|
"nHz": Units.FREQUENCY_NANOHERTZ,
|
|
190
195
|
}
|
|
191
196
|
|
zaber_motion/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "7.8.
|
|
1
|
+
__version__ = "7.8.2"
|
|
@@ -9,13 +9,13 @@ zaber_motion/call.py,sha256=X8iXJdlO1AvnMeDFmKXEPY8UFQWn8EXZmoXzcWO_ihc,5404
|
|
|
9
9
|
zaber_motion/convert_exception.py,sha256=0ANPUmugxDvCGMURPN8Lqyi-3cU80L323xrsF19wbIk,8625
|
|
10
10
|
zaber_motion/dto_object.py,sha256=TrwKMn_dbeh4DnCToS507G5eRJiW0_ZcGj9Q5RaSjqY,377
|
|
11
11
|
zaber_motion/events.py,sha256=8UB_4SZz3HDb8VqborlHQGt7w0Nd11rEYblbVQxyckE,3510
|
|
12
|
-
zaber_motion/library.py,sha256=
|
|
12
|
+
zaber_motion/library.py,sha256=g5o8JZoyhAc2GbBOyNPaP1fDvvuO7S7PlQ6NW-c8iLw,5096
|
|
13
13
|
zaber_motion/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
zaber_motion/serialization.py,sha256=0yLY0dA7XRjMAlI-wr92arZ6yRO97CyC_Rzc9BBHJRk,1019
|
|
15
15
|
zaber_motion/tools.py,sha256=ZI8xYDa6SFlMghP2qklV73Z0TJcezC6trdAAXVI6PoM,2291
|
|
16
16
|
zaber_motion/unit_table.py,sha256=DtphJjbzD1LSHpd4-idwIE2Dif89L7RrmeQI3LkOp40,2583
|
|
17
|
-
zaber_motion/units.py,sha256=
|
|
18
|
-
zaber_motion/version.py,sha256=
|
|
17
|
+
zaber_motion/units.py,sha256=h1sEuCQR0q8SeCdWd2V8X62VZJBxMda9Kef724f6yc0,11059
|
|
18
|
+
zaber_motion/version.py,sha256=V5VzFtygdIaj5lkf6Mj81HElk5MW5x8zRVcTe8YnYpY,23
|
|
19
19
|
zaber_motion/ascii/__init__.py,sha256=9RFjxHOckdwD6DlAvmVfpWhR1U9-lWyU1t3EE0C2Glc,4921
|
|
20
20
|
zaber_motion/ascii/all_axes.py,sha256=KEynCocZ6wPUur7xgA7KUyyLWgsCqrsx7zDoMfVYeRM,11135
|
|
21
21
|
zaber_motion/ascii/axis.py,sha256=O5nZ0xIG_vRYMLZcEB_yV7UWi0XHtn4NmfBlh0QFtkQ,59284
|
|
@@ -33,7 +33,7 @@ zaber_motion/ascii/pvt_buffer.py,sha256=4vnca3STciuQjqAjFGm1Wbx5Ea4lzKvqOcJL376L
|
|
|
33
33
|
zaber_motion/ascii/pvt_io.py,sha256=RNe6JhfZrTmSjnF9VaEhD0XvuV0p_m2_UUdkmcA5g58,22867
|
|
34
34
|
zaber_motion/ascii/pvt_sequence.py,sha256=9fLxajzIz4rI73Xzb39r2fuM6gIXbtwId7S6KCJqw0s,52711
|
|
35
35
|
zaber_motion/ascii/servo_tuner.py,sha256=W74ANJl22iotuEJ6XkFrJDXIINvNAna2nKYmZy6J_SA,23976
|
|
36
|
-
zaber_motion/ascii/setting_constants.py,sha256=
|
|
36
|
+
zaber_motion/ascii/setting_constants.py,sha256=EzbS04WLNGkq8FK_BUulM2YJe_IYqhpyoL1VPEWq9uY,31684
|
|
37
37
|
zaber_motion/ascii/storage.py,sha256=TKsTzB3Z6x8mq4OTcEhij7TcVchZL32JXqgVY0WZFow,27036
|
|
38
38
|
zaber_motion/ascii/stream.py,sha256=vXql5bi2RaUcmHjGwS00Vs7PqRIbtoikSGOjluAZi9E,82674
|
|
39
39
|
zaber_motion/ascii/stream_buffer.py,sha256=KKX-XlsoMjmt8pL7kqF16qZnRF_2TDeRLPg7v896Ju4,3180
|
|
@@ -480,9 +480,9 @@ zaber_motion/microscopy/wdi_autofocus_provider.py,sha256=3fPQBpdt7EDpV9cCRGaS0xi
|
|
|
480
480
|
zaber_motion/product/__init__.py,sha256=ZGZzfMmsd1ZWwLk0SZ3Ac1Une88SZQHuuzEFGgd6ork,538
|
|
481
481
|
zaber_motion/product/process.py,sha256=IRHDUcQZItJSGIhW20KTiG4KoHxgzheqLUYSn-rwNnQ,28276
|
|
482
482
|
zaber_motion/product/process_controller.py,sha256=89s_7EQ5RWPjXZ1krDbOt7oc87wSB-2SRHDoiVCE-L0,4319
|
|
483
|
-
zaber_motion-7.8.
|
|
484
|
-
zaber_motion_bindings/zaber-motion-core-windows-arm64.dll,sha256=
|
|
485
|
-
zaber_motion-7.8.
|
|
486
|
-
zaber_motion-7.8.
|
|
487
|
-
zaber_motion-7.8.
|
|
488
|
-
zaber_motion-7.8.
|
|
483
|
+
zaber_motion-7.8.2.dist-info/licenses/LICENSE.txt,sha256=H7YIgjgmcE_L-pfvZTWUoLrk7p0LiiKQh5_oeIWux-k,111363
|
|
484
|
+
zaber_motion_bindings/zaber-motion-core-windows-arm64.dll,sha256=TZC6X8HsuKgOgJiqwGKnIhPMlGWzibsZGcXsEnbo11c,14165504
|
|
485
|
+
zaber_motion-7.8.2.dist-info/METADATA,sha256=Seo-8YUJCVtONSR4N0kzHmR4_uDK6uWUg4zt6_7qpg4,129838
|
|
486
|
+
zaber_motion-7.8.2.dist-info/WHEEL,sha256=ZuferYni-CZubrQTGsfh72BxbEbBpgoiNYpUtRkO6Pw,97
|
|
487
|
+
zaber_motion-7.8.2.dist-info/top_level.txt,sha256=ypgkPvPad6Oge50CT6unnvxCEliKUB6olL6CUUER1SA,51
|
|
488
|
+
zaber_motion-7.8.2.dist-info/RECORD,,
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|