Add make_teleoperator_from_config

This commit is contained in:
Simon Alibert
2025-05-08 12:51:32 +02:00
parent 293870d0f6
commit b207babd9e

View File

@@ -0,0 +1,27 @@
from .config import TeleoperatorConfig
from .teleoperator import Teleoperator
def make_teleoperator_from_config(config: TeleoperatorConfig) -> Teleoperator:
if config.type == "keyboard":
from .keyboard import KeyboardTeleop
return KeyboardTeleop(config)
elif config.type == "koch_leader":
from .koch_leader import KochLeader
return KochLeader(config)
elif config.type == "so100_leader":
from .so100_leader import SO100Leader
return SO100Leader(config)
elif config.type == "stretch3":
from .stretch3_gamepad import Stretch3GamePad
return Stretch3GamePad(config)
elif config.type == "widowx":
from .widowx import WidowX
return WidowX(config)
else:
raise ValueError(config.type)