add prototype fake robot, more debug logging

This commit is contained in:
Olivier R-D
2013-04-20 19:12:55 +02:00
parent 8e0538ab09
commit ddbd6e9ce1
6 changed files with 94 additions and 8 deletions

17
tools/get_rob.py Normal file
View File

@@ -0,0 +1,17 @@
#!/usr/bin/env python
from urx import Robot
import math3d
from math import pi
import logging
if __name__ == "__main__":
try:
robot = Robot( 'localhost')#, logLevel=logging.DEBUG, parserLogLevel=logging.DEBUG)
r = robot
from IPython.frontend.terminal.embed import InteractiveShellEmbed
ipshell = InteractiveShellEmbed( banner1="\nStarting IPython shell, robot object is available\n")
ipshell(local_ns=locals())
finally:
if "robot" in dir():
robot.cleanup()