@@ -592,7 +592,7 @@ def set_position(self, x=None, y=None, z=None, roll=None, pitch=None, yaw=None,
592
592
:param relative: relative move or not
593
593
:param is_radian: the roll/pitch/yaw in radians or not, default is self.default_is_radian
594
594
:param wait: whether to wait for the arm to complete, default is False
595
- :param timeout: maximum waiting time(unit: second), default is 10s , only valid if wait is True
595
+ :param timeout: maximum waiting time(unit: second), default is None(no timeout) , only valid if wait is True
596
596
:param kwargs: reserved
597
597
:return: code
598
598
code: See the API code documentation for details.
@@ -646,7 +646,7 @@ def set_servo_angle(self, servo_id=None, angle=None, speed=None, mvacc=None, mvt
646
646
:param relative: relative move or not
647
647
:param is_radian: the angle in radians or not, default is self.default_is_radian
648
648
:param wait: whether to wait for the arm to complete, default is False
649
- :param timeout: maximum waiting time(unit: second), default is 10s , only valid if wait is True
649
+ :param timeout: maximum waiting time(unit: second), default is None(no timeout) , only valid if wait is True
650
650
:param kwargs: reserved
651
651
:return: code
652
652
code: See the API code documentation for details.
@@ -686,7 +686,7 @@ def move_circle(self, pose1, pose2, percent, speed=None, mvacc=None, mvtime=None
686
686
:param mvtime: 0, reserved
687
687
:param is_radian: roll/pitch/yaw value is radians or not, default is self.default_is_radian
688
688
:param wait: whether to wait for the arm to complete, default is False
689
- :param timeout: maximum waiting time(unit: second), default is 10s , only valid if wait is True
689
+ :param timeout: maximum waiting time(unit: second), default is None(no timeout) , only valid if wait is True
690
690
:param kwargs: reserved
691
691
:return: code
692
692
code: See the API code documentation for details.
@@ -711,7 +711,7 @@ def move_gohome(self, speed=None, mvacc=None, mvtime=None, is_radian=None, wait=
711
711
:param mvtime: reserved
712
712
:param is_radian: the speed and acceleration are in radians or not, default is self.default_is_radian
713
713
:param wait: whether to wait for the arm to complete, default is False
714
- :param timeout: maximum waiting time(unit: second), default is 10s , only valid if wait is True
714
+ :param timeout: maximum waiting time(unit: second), default is None(no timeout) , only valid if wait is True
715
715
:return: code
716
716
code: See the API code documentation for details.
717
717
"""
@@ -1123,7 +1123,7 @@ def reset(self, speed=None, mvacc=None, mvtime=None, is_radian=None, wait=False,
1123
1123
:param mvtime: reserved
1124
1124
:param is_radian: the speed and acceleration are in radians or not, default is self.default_is_radian
1125
1125
:param wait: whether to wait for the arm to complete, default is False
1126
- :param timeout: maximum waiting time(unit: second), default is 10s , only valid if wait is True
1126
+ :param timeout: maximum waiting time(unit: second), default is None(no timeout) , only valid if wait is True
1127
1127
"""
1128
1128
return self ._arm .reset (speed = speed , mvacc = mvacc , mvtime = mvtime , is_radian = is_radian , wait = wait , timeout = timeout )
1129
1129
0 commit comments