Files
lerobot/lerobot/common/robot_devices/robots/utils.py
Remi Cadene 8a7aa50e97 Style
2024-07-09 22:57:12 +02:00

10 lines
247 B
Python

from typing import Protocol
class Robot(Protocol):
def init_teleop(self): ...
def run_calibration(self): ...
def teleop_step(self, record_data=False): ...
def capture_observation(self): ...
def send_action(self, action): ...