emm-stepper 1.0.0__py3-none-any.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.
@@ -0,0 +1,38 @@
1
+ """ZDT X42S Emm固件步进电机控制库.
2
+
3
+ 基于ZDT_X42S第二代闭环步进电机用户手册V1.0.3_251224开发。
4
+ 仅支持Emm固件通讯协议。
5
+ """
6
+
7
+ from .device import EmmDevice
8
+ from .configs import (
9
+ Address,
10
+ ChecksumMode,
11
+ Direction,
12
+ SyncFlag,
13
+ StoreFlag,
14
+ MotionMode,
15
+ HomingMode,
16
+ )
17
+ from .parameters import (
18
+ DeviceParams,
19
+ JogParams,
20
+ PositionParams,
21
+ HomingParams,
22
+ )
23
+
24
+ __version__ = "1.0.0"
25
+ __all__ = [
26
+ "EmmDevice",
27
+ "Address",
28
+ "ChecksumMode",
29
+ "Direction",
30
+ "SyncFlag",
31
+ "StoreFlag",
32
+ "MotionMode",
33
+ "HomingMode",
34
+ "DeviceParams",
35
+ "JogParams",
36
+ "PositionParams",
37
+ "HomingParams",
38
+ ]