Upload folder using huggingface_hub
Browse files- robots/mobile_manipulator/tiago_dual/asset.yaml +3 -0
- robots/mobile_manipulator/tiago_dual/skills/locomotion/backward/skill.yaml +34 -0
- robots/mobile_manipulator/tiago_dual/skills/locomotion/forward/skill.yaml +33 -0
- robots/mobile_manipulator/tiago_dual/skills/locomotion/left/skill.yaml +33 -0
- robots/mobile_manipulator/tiago_dual/skills/locomotion/right/skill.yaml +33 -0
- robots/mobile_manipulator/tiago_dual/skills/locomotion/rotate_left/skill.yaml +32 -0
- robots/mobile_manipulator/tiago_dual/skills/locomotion/rotate_right/skill.yaml +32 -0
- robots/mobile_manipulator/tiago_dual/skills/locomotion/stop/skill.yaml +17 -0
- robots/mobile_manipulator/tiago_dual/skills/skills.yaml +11 -0
robots/mobile_manipulator/tiago_dual/asset.yaml
CHANGED
|
@@ -196,6 +196,9 @@ robot:
|
|
| 196 |
- manipulation
|
| 197 |
- grasping
|
| 198 |
mjcf: "mujoco/robot.xml"
|
|
|
|
|
|
|
|
|
|
| 199 |
|
| 200 |
source:
|
| 201 |
type: "external"
|
|
|
|
| 196 |
- manipulation
|
| 197 |
- grasping
|
| 198 |
mjcf: "mujoco/robot.xml"
|
| 199 |
+
skills:
|
| 200 |
+
path: "skills"
|
| 201 |
+
index: "skills/skills.yaml"
|
| 202 |
|
| 203 |
source:
|
| 204 |
type: "external"
|
robots/mobile_manipulator/tiago_dual/skills/locomotion/backward/skill.yaml
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
schema_version: '0.1'
|
| 2 |
+
skill:
|
| 3 |
+
id: backward
|
| 4 |
+
name: backward
|
| 5 |
+
display_name: 后退
|
| 6 |
+
category: locomotion
|
| 7 |
+
version: 1.0.0
|
| 8 |
+
description: Drive the wheeled base backward in the body -X direction.
|
| 9 |
+
aliases:
|
| 10 |
+
- 后退
|
| 11 |
+
- 向后
|
| 12 |
+
- backward
|
| 13 |
+
- back
|
| 14 |
+
inputs:
|
| 15 |
+
speed:
|
| 16 |
+
type: number
|
| 17 |
+
unit: m/s
|
| 18 |
+
default: 0.4
|
| 19 |
+
minimum: 0.0
|
| 20 |
+
maximum: 1.0
|
| 21 |
+
duration:
|
| 22 |
+
type: number
|
| 23 |
+
unit: s
|
| 24 |
+
default: 1.0
|
| 25 |
+
minimum: 0.0
|
| 26 |
+
interface:
|
| 27 |
+
kind: unified_base_target
|
| 28 |
+
command: set_base_motion
|
| 29 |
+
mapping:
|
| 30 |
+
axis: 0
|
| 31 |
+
sign: -1
|
| 32 |
+
speed_from: speed
|
| 33 |
+
speed_unit: m/s
|
| 34 |
+
duration_from: duration
|
robots/mobile_manipulator/tiago_dual/skills/locomotion/forward/skill.yaml
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
schema_version: '0.1'
|
| 2 |
+
skill:
|
| 3 |
+
id: forward
|
| 4 |
+
name: forward
|
| 5 |
+
display_name: 前进
|
| 6 |
+
category: locomotion
|
| 7 |
+
version: 1.0.0
|
| 8 |
+
description: Drive the wheeled base forward in the body +X direction.
|
| 9 |
+
aliases:
|
| 10 |
+
- 前进
|
| 11 |
+
- 向前
|
| 12 |
+
- forward
|
| 13 |
+
inputs:
|
| 14 |
+
speed:
|
| 15 |
+
type: number
|
| 16 |
+
unit: m/s
|
| 17 |
+
default: 0.4
|
| 18 |
+
minimum: 0.0
|
| 19 |
+
maximum: 1.0
|
| 20 |
+
duration:
|
| 21 |
+
type: number
|
| 22 |
+
unit: s
|
| 23 |
+
default: 1.0
|
| 24 |
+
minimum: 0.0
|
| 25 |
+
interface:
|
| 26 |
+
kind: unified_base_target
|
| 27 |
+
command: set_base_motion
|
| 28 |
+
mapping:
|
| 29 |
+
axis: 0
|
| 30 |
+
sign: 1
|
| 31 |
+
speed_from: speed
|
| 32 |
+
speed_unit: m/s
|
| 33 |
+
duration_from: duration
|
robots/mobile_manipulator/tiago_dual/skills/locomotion/left/skill.yaml
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
schema_version: '0.1'
|
| 2 |
+
skill:
|
| 3 |
+
id: left
|
| 4 |
+
name: left
|
| 5 |
+
display_name: 左移
|
| 6 |
+
category: locomotion
|
| 7 |
+
version: 1.0.0
|
| 8 |
+
description: Strafe the wheeled base to the left in the body +Y direction.
|
| 9 |
+
aliases:
|
| 10 |
+
- 左移
|
| 11 |
+
- 向左平移
|
| 12 |
+
- strafe left
|
| 13 |
+
inputs:
|
| 14 |
+
speed:
|
| 15 |
+
type: number
|
| 16 |
+
unit: m/s
|
| 17 |
+
default: 0.4
|
| 18 |
+
minimum: 0.0
|
| 19 |
+
maximum: 1.0
|
| 20 |
+
duration:
|
| 21 |
+
type: number
|
| 22 |
+
unit: s
|
| 23 |
+
default: 1.0
|
| 24 |
+
minimum: 0.0
|
| 25 |
+
interface:
|
| 26 |
+
kind: unified_base_target
|
| 27 |
+
command: set_base_motion
|
| 28 |
+
mapping:
|
| 29 |
+
axis: 1
|
| 30 |
+
sign: 1
|
| 31 |
+
speed_from: speed
|
| 32 |
+
speed_unit: m/s
|
| 33 |
+
duration_from: duration
|
robots/mobile_manipulator/tiago_dual/skills/locomotion/right/skill.yaml
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
schema_version: '0.1'
|
| 2 |
+
skill:
|
| 3 |
+
id: right
|
| 4 |
+
name: right
|
| 5 |
+
display_name: 右移
|
| 6 |
+
category: locomotion
|
| 7 |
+
version: 1.0.0
|
| 8 |
+
description: Strafe the wheeled base to the right in the body -Y direction.
|
| 9 |
+
aliases:
|
| 10 |
+
- 右移
|
| 11 |
+
- 向右平移
|
| 12 |
+
- strafe right
|
| 13 |
+
inputs:
|
| 14 |
+
speed:
|
| 15 |
+
type: number
|
| 16 |
+
unit: m/s
|
| 17 |
+
default: 0.4
|
| 18 |
+
minimum: 0.0
|
| 19 |
+
maximum: 1.0
|
| 20 |
+
duration:
|
| 21 |
+
type: number
|
| 22 |
+
unit: s
|
| 23 |
+
default: 1.0
|
| 24 |
+
minimum: 0.0
|
| 25 |
+
interface:
|
| 26 |
+
kind: unified_base_target
|
| 27 |
+
command: set_base_motion
|
| 28 |
+
mapping:
|
| 29 |
+
axis: 1
|
| 30 |
+
sign: -1
|
| 31 |
+
speed_from: speed
|
| 32 |
+
speed_unit: m/s
|
| 33 |
+
duration_from: duration
|
robots/mobile_manipulator/tiago_dual/skills/locomotion/rotate_left/skill.yaml
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
schema_version: '0.1'
|
| 2 |
+
skill:
|
| 3 |
+
id: rotate_left
|
| 4 |
+
name: rotate_left
|
| 5 |
+
display_name: 左转
|
| 6 |
+
category: locomotion
|
| 7 |
+
version: 1.0.0
|
| 8 |
+
description: Yaw the base counterclockwise. Speed is degrees per second.
|
| 9 |
+
aliases:
|
| 10 |
+
- 左转
|
| 11 |
+
- turn left
|
| 12 |
+
inputs:
|
| 13 |
+
speed:
|
| 14 |
+
type: number
|
| 15 |
+
unit: deg/s
|
| 16 |
+
default: 30.0
|
| 17 |
+
minimum: 0.0
|
| 18 |
+
maximum: 90.0
|
| 19 |
+
duration:
|
| 20 |
+
type: number
|
| 21 |
+
unit: s
|
| 22 |
+
default: 1.0
|
| 23 |
+
minimum: 0.0
|
| 24 |
+
interface:
|
| 25 |
+
kind: unified_base_target
|
| 26 |
+
command: set_base_motion
|
| 27 |
+
mapping:
|
| 28 |
+
axis: 2
|
| 29 |
+
sign: 1
|
| 30 |
+
speed_from: speed
|
| 31 |
+
speed_unit: deg/s
|
| 32 |
+
duration_from: duration
|
robots/mobile_manipulator/tiago_dual/skills/locomotion/rotate_right/skill.yaml
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
schema_version: '0.1'
|
| 2 |
+
skill:
|
| 3 |
+
id: rotate_right
|
| 4 |
+
name: rotate_right
|
| 5 |
+
display_name: 右转
|
| 6 |
+
category: locomotion
|
| 7 |
+
version: 1.0.0
|
| 8 |
+
description: Yaw the base clockwise. Speed is degrees per second.
|
| 9 |
+
aliases:
|
| 10 |
+
- 右转
|
| 11 |
+
- turn right
|
| 12 |
+
inputs:
|
| 13 |
+
speed:
|
| 14 |
+
type: number
|
| 15 |
+
unit: deg/s
|
| 16 |
+
default: 30.0
|
| 17 |
+
minimum: 0.0
|
| 18 |
+
maximum: 90.0
|
| 19 |
+
duration:
|
| 20 |
+
type: number
|
| 21 |
+
unit: s
|
| 22 |
+
default: 1.0
|
| 23 |
+
minimum: 0.0
|
| 24 |
+
interface:
|
| 25 |
+
kind: unified_base_target
|
| 26 |
+
command: set_base_motion
|
| 27 |
+
mapping:
|
| 28 |
+
axis: 2
|
| 29 |
+
sign: -1
|
| 30 |
+
speed_from: speed
|
| 31 |
+
speed_unit: deg/s
|
| 32 |
+
duration_from: duration
|
robots/mobile_manipulator/tiago_dual/skills/locomotion/stop/skill.yaml
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
schema_version: '0.1'
|
| 2 |
+
skill:
|
| 3 |
+
id: stop
|
| 4 |
+
name: stop
|
| 5 |
+
display_name: 停止
|
| 6 |
+
category: locomotion
|
| 7 |
+
version: 1.0.0
|
| 8 |
+
description: Zero the base command for this robot.
|
| 9 |
+
aliases:
|
| 10 |
+
- 停止
|
| 11 |
+
- 停下
|
| 12 |
+
- 急停
|
| 13 |
+
- stop
|
| 14 |
+
inputs: {}
|
| 15 |
+
interface:
|
| 16 |
+
kind: unified_base_action
|
| 17 |
+
command: stop
|
robots/mobile_manipulator/tiago_dual/skills/skills.yaml
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Skill packages ship with the robot on UniEMind-Assets / Hugging Face.
|
| 2 |
+
# UniEMind discovers them at runtime; it does not vendor robot skills in-repo.
|
| 3 |
+
schema_version: '0.1'
|
| 4 |
+
skills:
|
| 5 |
+
- locomotion/forward
|
| 6 |
+
- locomotion/backward
|
| 7 |
+
- locomotion/left
|
| 8 |
+
- locomotion/right
|
| 9 |
+
- locomotion/rotate_left
|
| 10 |
+
- locomotion/rotate_right
|
| 11 |
+
- locomotion/stop
|