8 lines
222 B
Python
8 lines
222 B
Python
from dataclasses import dataclass
|
|
from lerobot.teleoperators import TeleoperatorConfig
|
|
@dataclass
|
|
@TeleoperatorConfig.register_subclass("xbox")
|
|
class XboxConfig(TeleoperatorConfig):
|
|
#控制器索引
|
|
index: int = 0
|