Skip to content

Commit c8293e0

Browse files
committed
push code
1 parent a98a4d8 commit c8293e0

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# ChangeLog for pymycobot
22

3+
## v3.0.3 (2023-01-10)
4+
5+
- release v3.0.3
6+
- Fix MyArm interface problems:
7+
- set_solution_angles()
8+
- Fix ultraArm interface problems:
9+
- set_jog_coord()
10+
- set_gpio_state()
11+
- set_coord()
12+
313
## v3.0.2 (2022-12-20)
414

515
- release v3.0.2

pymycobot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
from pymycobot.mybuddyemoticon import MyBuddyEmoticon
4444
__all__.append("MyBuddyEmoticon")
4545

46-
__version__ = "3.0.2"
46+
__version__ = "3.0.3"
4747
__author__ = "Elephantrobotics"
4848
__email__ = "[email protected]"
4949
__git_url__ = "https://github.com/elephantrobotics/pymycobot"

pymycobot/myarm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ def set_solution_angles(self, angle, speed):
218218
angle: Angle of joint 1.
219219
speed: 1 - 100.
220220
"""
221-
return self._mesg(ProtocolCode.SET_SOLUTION_ANGLES, self._angle2int(angle), speed)
221+
return self._mesg(ProtocolCode.SET_SOLUTION_ANGLES, [self._angle2int(angle)], speed)
222222

223223
def get_solution_angles(self):
224224
"""Get zero space deflection angle value"""

0 commit comments

Comments
 (0)