mirror of
https://github.com/huggingface/lerobot.git
synced 2026-07-27 03:36:24 +00:00
9021d2d240
* refactor(imports): enforce guard pattern * fix(tests): skip reachy2 if not installed * Address review feedback
134 lines
4.2 KiB
Python
134 lines
4.2 KiB
Python
#!/usr/bin/env python
|
|
|
|
# Copyright 2026 The HuggingFace Inc. team. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
import logging
|
|
from dataclasses import dataclass
|
|
from pathlib import Path
|
|
from typing import TYPE_CHECKING
|
|
|
|
from lerobot.utils.import_utils import _serial_available, require_package
|
|
|
|
if TYPE_CHECKING or _serial_available:
|
|
import serial
|
|
else:
|
|
serial = None # type: ignore[assignment]
|
|
|
|
from .exo_calib import ExoskeletonCalibration, exo_raw_to_angles, run_exo_calibration
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def parse_raw16(line: bytes) -> list[int] | None:
|
|
try:
|
|
parts = line.decode("utf-8", errors="ignore").split()
|
|
if len(parts) < 16:
|
|
return None
|
|
return [int(x) for x in parts[:16]]
|
|
except (ValueError, IndexError):
|
|
return None
|
|
|
|
|
|
def read_raw_from_serial(ser) -> list[int] | None:
|
|
"""Read latest sample from serial; if buffer is backed up, keep only the newest."""
|
|
try:
|
|
last = None
|
|
while ser.in_waiting > 0:
|
|
b = ser.readline()
|
|
if not b:
|
|
break
|
|
raw16 = parse_raw16(b)
|
|
if raw16 is not None:
|
|
last = raw16
|
|
if last is None:
|
|
b = ser.readline()
|
|
if b:
|
|
last = parse_raw16(b)
|
|
return last
|
|
except serial.SerialException as e:
|
|
logger.warning(f"Serial read error: {e}")
|
|
return None
|
|
|
|
|
|
@dataclass
|
|
class ExoskeletonArm:
|
|
port: str
|
|
calibration_fpath: Path
|
|
side: str
|
|
baud_rate: int = 115200
|
|
|
|
_ser: serial.Serial | None = None
|
|
calibration: ExoskeletonCalibration | None = None
|
|
|
|
def __post_init__(self):
|
|
require_package("pyserial", extra="unitree_g1", import_name="serial")
|
|
if self.calibration_fpath.is_file():
|
|
self._load_calibration()
|
|
|
|
@property
|
|
def is_connected(self) -> bool:
|
|
return self._ser is not None and getattr(self._ser, "is_open", False)
|
|
|
|
@property
|
|
def is_calibrated(self) -> bool:
|
|
return self.calibration is not None
|
|
|
|
def connect(self, calibrate: bool = True) -> None:
|
|
if self.is_connected:
|
|
return
|
|
try:
|
|
self._ser = serial.Serial(self.port, self.baud_rate, timeout=0.02)
|
|
self._ser.reset_input_buffer()
|
|
logger.info(f"connected: {self.port}")
|
|
except serial.SerialException as e:
|
|
raise ConnectionError(f"failed to connect to {self.port}: {e}") from e
|
|
|
|
if calibrate and not self.is_calibrated:
|
|
self.calibrate()
|
|
|
|
def disconnect(self) -> None:
|
|
if self._ser:
|
|
try:
|
|
self._ser.close()
|
|
finally:
|
|
self._ser = None
|
|
|
|
def _load_calibration(self) -> None:
|
|
try:
|
|
data = json.loads(self.calibration_fpath.read_text())
|
|
self.calibration = ExoskeletonCalibration.from_dict(data)
|
|
logger.info(f"loaded calibration: {self.calibration_fpath}")
|
|
except Exception as e:
|
|
logger.warning(f"failed to load calibration: {e}")
|
|
|
|
def read_raw(self) -> list[int] | None:
|
|
if not self._ser:
|
|
return None
|
|
return read_raw_from_serial(self._ser)
|
|
|
|
def get_angles(self) -> dict[str, float]:
|
|
if not self.calibration:
|
|
raise RuntimeError("exoskeleton not calibrated")
|
|
raw = self.read_raw()
|
|
return {} if raw is None else exo_raw_to_angles(raw, self.calibration)
|
|
|
|
def calibrate(self) -> None:
|
|
if not self.is_connected:
|
|
raise RuntimeError("Cannot calibrate: exoskeleton not connected")
|
|
self.calibration = run_exo_calibration(self._ser, self.side, self.calibration_fpath)
|