feetech-cli 0.1.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.
- feetech_cli/__init__.py +19 -0
- feetech_cli/cli.py +954 -0
- feetech_cli/controller.py +1031 -0
- feetech_cli/protocol.py +547 -0
- feetech_cli/registers.py +267 -0
- feetech_cli/simulator.py +408 -0
- feetech_cli/tui.py +857 -0
- feetech_cli-0.1.0.dist-info/METADATA +412 -0
- feetech_cli-0.1.0.dist-info/RECORD +13 -0
- feetech_cli-0.1.0.dist-info/WHEEL +5 -0
- feetech_cli-0.1.0.dist-info/entry_points.txt +3 -0
- feetech_cli-0.1.0.dist-info/licenses/LICENSE +21 -0
- feetech_cli-0.1.0.dist-info/top_level.txt +1 -0
feetech_cli/__init__.py
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"""Command line tools for FEETECH STS/SMS/SCS serial bus servos."""
|
|
2
|
+
|
|
3
|
+
from feetech_cli.controller import FeetechServoController
|
|
4
|
+
from feetech_cli.protocol import FeetechChecksumError
|
|
5
|
+
from feetech_cli.protocol import FeetechError
|
|
6
|
+
from feetech_cli.protocol import FeetechStatusError
|
|
7
|
+
from feetech_cli.protocol import FeetechTimeoutError
|
|
8
|
+
from feetech_cli.protocol import PacketHandler
|
|
9
|
+
|
|
10
|
+
__version__ = "0.1.0"
|
|
11
|
+
|
|
12
|
+
__all__ = [
|
|
13
|
+
"FeetechServoController",
|
|
14
|
+
"PacketHandler",
|
|
15
|
+
"FeetechError",
|
|
16
|
+
"FeetechTimeoutError",
|
|
17
|
+
"FeetechChecksumError",
|
|
18
|
+
"FeetechStatusError",
|
|
19
|
+
]
|