rewrite wait_for_move, split robot file, check test_all.py

This commit is contained in:
Olivier R-D
2015-06-12 10:34:42 +02:00
parent 06644d96c8
commit 5e4c8a0696
8 changed files with 498 additions and 495 deletions

View File

@@ -4,4 +4,10 @@ Python library to control an UR robot through its TCP/IP interface
__version__ = "0.9.0"
from urx.robot import Robot, RobotException, URRobot
from urx.urrobot import RobotException, URRobot
try:
from urx.robot import Robot
except ImportError as ex:
print("Exception while importing math3d base robot, disabling use of matrices", ex)
Robot = URRobot