2.增加多臂多控制器模式 3.末端姿态由欧拉角控制切换到四元数控制 4.增加vr手柄控制器 Signed-off-by: 1002142102@qq.com <1002142102@qq.com>
7 lines
286 B
Python
7 lines
286 B
Python
from dataclasses import dataclass, field
|
|
from lerobot.teleoperators import TeleoperatorConfig
|
|
@dataclass
|
|
@TeleoperatorConfig.register_subclass("mix")
|
|
class MixConfig(TeleoperatorConfig):
|
|
teleopList: dict[str,TeleoperatorConfig] = field(default_factory=dict[str,TeleoperatorConfig])
|