diff --git a/common/Testing/simpletest.py b/common/Testing/simpletest.py new file mode 100644 index 0000000..75d9a4b --- /dev/null +++ b/common/Testing/simpletest.py @@ -0,0 +1,13 @@ +from Motion import motion + +motion.setup(mode='client',klampt_model='klampt_models/baxter_with_parallel_grippers',libpath='.') + +motion.robot.startup() +try: + while True: + raw_input() + print motion.robot.left_limb.sensedPosition() +except KeyboardInterrupt: + motion.robot.stopMotion() + +