Add robot_devices and control_robot script
This commit is contained in:
8
lerobot/common/robot_devices/robots/utils.py
Normal file
8
lerobot/common/robot_devices/robots/utils.py
Normal file
@@ -0,0 +1,8 @@
|
||||
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): ...
|
||||
Reference in New Issue
Block a user