a b/URBasic/__init__.py
1
from __future__ import division
2
'''
3
Python 3.x library to control an UR robot through its TCP/IP interfaces
4
Copyright (C) 2017  Martin Huus Bjerge, Rope Robotics ApS, Denmark
5
6
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
7
and associated documentation files (the "Software"), to deal in the Software without restriction,
8
including without limitation the rights to use, copy, modify, merge, publish, distribute,
9
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software
10
is furnished to do so, subject to the following conditions:
11
12
The above copyright notice and this permission notice shall be included in all copies
13
or substantial portions of the Software.
14
15
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
16
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
17
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL "Rope Robotics ApS" BE LIABLE FOR ANY CLAIM,
18
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
21
Except as contained in this notice, the name of "Rope Robotics ApS" shall not be used
22
in advertising or otherwise to promote the sale, use or other dealings in this Software
23
without prior written authorization from "Rope Robotics ApS".
24
25
'''
26
__author__ = "Martin Huus Bjerge"
27
__copyright__ = "Copyright 2017, Rope Robotics ApS, Denmark"
28
__license__ = "MIT License"
29
30
import logging
31
from URBasic.connectionState import ConnectionState
32
from URBasic.dashboard import DashBoard
33
from URBasic.dataLog import DataLog
34
from URBasic.dataLogging import DataLogging
35
#from URBasic.kinematic import *
36
from URBasic.manipulation import *
37
from URBasic.realTimeClient import RealTimeClient
38
from URBasic.robotConnector import RobotConnector
39
from URBasic.robotModel import RobotModel
40
from URBasic.rtde import RTDE
41
from URBasic.urScript import UrScript
42
from URBasic.urScriptExt import UrScriptExt