mirror of
https://github.com/huggingface/lerobot.git
synced 2026-05-22 20:19:43 +00:00
5e54e39795
Co-authored-by: Simon Alibert <alibert.sim@gmail.com>
11 lines
247 B
Python
11 lines
247 B
Python
from typing import Protocol
|
|
|
|
|
|
class MotorsBus(Protocol):
|
|
def motor_names(self): ...
|
|
def set_calibration(self): ...
|
|
def apply_calibration(self): ...
|
|
def revert_calibration(self): ...
|
|
def read(self): ...
|
|
def write(self): ...
|