Skip to content

Commit 920b1b8

Browse files
committed
修复优化P340系统参数接口、读取版本号接口
2 parents 7b664ac + 2d04ec6 commit 920b1b8

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

docs/ultraArm_P340_en.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ from pymycobot.ultraArm import ultraArm
126126
- Triaxial:The length is 3, which is in turn ` [x, y, z, θ]`
127127

128128

129-
**2.5** `send_coord(id,coord,speed)`
129+
**2.5** `set_coord(id,coord,speed)`
130130

131131
- **Function:** Send a single coordinate value to the mechanical arm for movement
132132
- **Parameter description:**

docs/ultraArm_P340_zh.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ from pymycobot.ultraArm import ultraArm
125125
- 三轴:长度为 4,依次为 `[x, y, z, θ]`
126126

127127

128-
**2.5** `send_coord(id,coord,speed)`
128+
**2.5** `set_coord(id,coord,speed)`
129129

130130
- **功能:** 发送单个坐标值给机械臂进行移动
131131
- **参数说明:**

pymycobot/conveyor_api.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
import logging
22
import threading
33
import time
4-
5-
from serial import Serial
64
import struct
5+
from serial import Serial
76

87

98
class CommandGenre(object):

0 commit comments

Comments
 (0)