mycobot_ros/mycobot_320/mycobot_320_moveit/scripts/sync_plan.py
2022-04-07 14:50:16 +08:00

41 lines
929 B
Python

#!/usr/bin/env python2
import time
import subprocess
import rospy
from sensor_msgs.msg import JointState
from pymycobot.mycobot import MyCobot
mc = None
def callback(data):
rospy.loginfo(rospy.get_caller_id() + "%s", data)
data_list = []
for index, value in enumerate(data.position):
# if index != 2:
# value *= -1
data_list.append(value)
mc.send_radians(data_list, 80)
def listener():
global mc
rospy.init_node("mycobot_reciver", anonymous=True)
port = subprocess.check_output(['echo -n /dev/ttyUSB*'],
shell=True)
port = rospy.get_param("~port", port)
baud = rospy.get_param("~baud", 1000000)
mc = MyCobot(port, baud)
rospy.Subscriber("joint_states", JointState, callback)
# spin() simply keeps python from exiting until this node is stopped
rospy.spin()
if __name__ == "__main__":
listener()