2.增加多臂多控制器模式 3.末端姿态由欧拉角控制切换到四元数控制 4.增加vr手柄控制器 Signed-off-by: 1002142102@qq.com <1002142102@qq.com>
8 lines
288 B
Python
8 lines
288 B
Python
from dataclasses import dataclass, field
|
|
from lerobot.robots.config import RobotConfig
|
|
|
|
@RobotConfig.register_subclass("mix")
|
|
@dataclass
|
|
class MixRobotConfig(RobotConfig):
|
|
# Port to connect to the arm
|
|
robotList: dict[str,RobotConfig] = field(default_factory=dict[str,RobotConfig]) |