Skip to content

Commit bc73e2f

Browse files
Update to new version : 7.11.0.0
1 parent b1aaf4e commit bc73e2f

File tree

6 files changed

+19
-2
lines changed

6 files changed

+19
-2
lines changed

underautomation/universal_robots/common/controller_box_types.py

+2
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ class ControllerBoxTypes(int):
88
UR5 = controller_box_types.UR5
99
UR10 = controller_box_types.UR10
1010
UR16 = controller_box_types.UR16
11+
UR20 = controller_box_types.UR20
12+
UR30 = controller_box_types.UR30

underautomation/universal_robots/common/robot_models.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
from UnderAutomation.UniversalRobots.Common import RobotModels as robot_models
55

66
class RobotModels(int):
7-
UR3 = robot_models.UR3
87
UR5 = robot_models.UR5
98
UR10 = robot_models.UR10
9+
UR3 = robot_models.UR3
1010
UR16 = robot_models.UR16
11+
UR20 = robot_models.UR20
12+
UR30 = robot_models.UR30

underautomation/universal_robots/common/status_code.py

+1
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ class StatusCode(int):
1515
SocketInternalError = status_code.SocketInternalError
1616
RTDEThreadAborted = status_code.RTDEThreadAborted
1717
WriteInputsRtdeError = status_code.WriteInputsRtdeError
18+
RTDEOverrun = status_code.RTDEOverrun
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import typing
2+
import clr
3+
import os
4+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", 'lib', 'UnderAutomation.UniversalRobots.dll')))
5+
from UnderAutomation.UniversalRobots.Internal import RtdeOverrunException as rtde_overrun_exception
6+
7+
class RtdeOverrunException:
8+
def __init__(self, _internal = 0):
9+
if(_internal == 0):
10+
self._instance = rtde_overrun_exception()
11+
else:
12+
self._instance = _internal
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.8.0.5
1+
7.11.0.0

0 commit comments

Comments
 (0)