Install
openclaw skills install tm-robotControl and monitor OMRON TM collaborative robots with motion commands, status feedback, safety controls, camera support, and IO handling.
openclaw skills install tm-robotVersion: 1.1.0
Author: RobotQu
License: MIT
OMRON TM 协作机器人控制技能,支持状态监控、运动控制、安全功能等。
from tm_robot import TMRobot
robot = TMRobot("192.168.1.10")
await robot.connect()
# 获取状态
joints = await robot.get_joints()
pose = await robot.get_pose()
# 运动控制
await robot.move_joint([0, 0, 90, 0, 90, 0], speed=50)
await robot.move_line([100, 0, 0], speed=50)
await robot.disconnect()