robotclaw
星标14
分支1
更新时间2026年3月14日 22:12
Control LOBOT LX bus servo robots — move joints, record/play motions, scan diagnostics
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
文件资源管理器
11 个文件SKILL.md
readonly菜单
Control LOBOT LX bus servo robots — move joints, record/play motions, scan diagnostics
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
| name | robotclaw |
| description | Control LOBOT LX bus servo robots — move joints, record/play motions, scan diagnostics |
Control physical LOBOT LX bus servo robots through this skill. Bridges the digital AI world with the physical robot world.
| Joint Name | Servo ID | Description |
|---|---|---|
| left_hip_yaw | 1 | Left hip side swing |
| left_hip_pitch | 2 | Left hip forward/back |
| left_knee | 3 | Left knee bend |
| left_ankle_pitch | 4 | Left ankle forward/back |
| left_ankle_roll | 5 | Left ankle side roll |
| right_hip_yaw | 6 | Right hip side swing |
| right_hip_pitch | 7 | Right hip forward/back |
| right_knee | 8 | Right knee bend |
| right_ankle_pitch | 9 | Right ankle forward/back |
| right_ankle_roll | 10 | Right ankle side roll |
from robotclaw.openclaw_skill import OpenClawSkill
skill = OpenClawSkill(port="COM3")
skill.connect()
# Move to home
skill.execute("go_home", time_ms=2000)
# Check servo status
result = skill.execute("scan_status")
# Move a single joint
skill.execute("set_joint", name="left_knee", position=300, time_ms=500)
# Play a recorded motion
skill.execute("play_motion", motion_name="walk_cycle", speed=1.5)
skill.disconnect()
unload_all before manually posing the robot