Spaces:
Running
Running
File size: 10,371 Bytes
bdc1ac8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 |
# @lerobot/node
Control robots with Node.js (serialport), inspired by [LeRobot](https://github.com/huggingface/lerobot)
๐ **[Try the live (web) demo โ](https://huggingface.co/spaces/NERDDISCO/LeRobot.js)**
## Installation
```bash
# pnpm
pnpm add @lerobot/node
# npm
npm install @lerobot/node
# yarn
yarn add @lerobot/node
```
## Quick Start
```typescript
import {
findPort,
connectPort,
releaseMotors,
calibrate,
teleoperate,
} from "@lerobot/node";
// 1. find available robot ports
console.log("๐ finding available robot ports...");
const findProcess = await findPort();
const robots = await findProcess.result;
if (robots.length === 0) {
console.log("โ no robots found. check connections.");
process.exit(1);
}
// 2. connect to the first robot found
console.log(`โ
found ${robots.length} robot(s). connecting to first one...`);
const robot = await connectPort(robots[0].path, robots[0].robotType);
// 3. release motors for manual positioning
console.log("๐ releasing motors for manual positioning...");
await releaseMotors(robot);
// 4. calibrate motors by moving through full range
console.log("โ๏ธ starting calibration...");
const calibrationProcess = await calibrate({
robot,
onProgress: (message) => console.log(message),
onLiveUpdate: (data) => console.log("live positions:", data),
});
// move robot through its range, then stop calibration
console.log("๐ move robot through full range, press enter when done...");
process.stdin.once("data", () => {
calibrationProcess.stop();
});
const calibrationData = await calibrationProcess.result;
console.log("โ
calibration complete!");
// 5. control robot with keyboard
console.log("๐ฎ starting keyboard control...");
const teleop = await teleoperate({
robot,
calibrationData,
teleop: { type: "keyboard" },
});
teleop.start();
// stop control after 30 seconds
setTimeout(() => {
teleop.stop();
console.log("๐ control stopped");
}, 30000);
```
## How It Works
### **Beginner Flow: `findPort()` โ `connectPort()` โ Use Robot**
Most users should start with `findPort()` for discovery, then `connectPort()` for connection:
```typescript
// โ
recommended: discover then connect
const findProcess = await findPort();
const robots = await findProcess.result;
const robot = await connectPort(robots[0].path, robots[0].robotType);
```
### **Advanced: Direct Connection with `connectPort()`**
Only use `connectPort()` when you already know the exact port:
```typescript
// โก advanced: direct connection to known port
const robot = await connectPort("/dev/ttyUSB0", "so100_follower");
```
## Core API
### `findPort(config?): Promise<FindPortProcess>`
Discovers available robotics hardware on serial ports. Unlike the web version, this only discovers ports - connection happens separately with `connectPort()`.
```typescript
// Discover all available robots
const findProcess = await findPort();
const robots = await findProcess.result;
console.log(`Found ${robots.length} robot(s):`);
robots.forEach((robot) => {
console.log(`- ${robot.robotType} on ${robot.path}`);
});
// Connect to specific robot
const robot = await connectPort(robots[0].path, robots[0].robotType);
```
#### Options
- `config?: FindPortConfig` - Optional configuration
- `onMessage?: (message: string) => void` - Progress messages callback
#### Returns: `FindPortProcess`
- `result: Promise<DiscoveredRobot[]>` - Array of discovered robots with `path`, `robotType`, and other metadata
- `stop(): void` - Cancel discovery process
#### DiscoveredRobot Structure
```typescript
interface DiscoveredRobot {
path: string; // Serial port path (e.g., "/dev/ttyUSB0")
robotType: "so100_follower" | "so100_leader";
// Additional metadata...
}
```
---
### `connectPort(port): Promise<RobotConnection>`
Creates a connection to a robot on the specified serial port.
```typescript
// Connect to SO-100 follower arm
const robot = await connectPort(
"/dev/ttyUSB0", // Serial port path
"so100_follower", // Robot type
"my_robot_arm" // Custom robot ID
);
// Windows
const robot = await connectPort("COM4", "so100_follower", "my_robot");
// Connection is ready to use
console.log(`Connected to ${robot.robotType} on ${robot.port.path}`);
```
#### Parameters
- `port: string` - Serial port path (e.g., `/dev/ttyUSB0`, `COM4`)
- `robotType: "so100_follower" | "so100_leader"` - Type of robot
- `robotId: string` - Custom identifier for your robot
#### Returns: `Promise<RobotConnection>`
- Initialized robot connection ready for calibration/teleoperation
- Includes configured motor IDs, keyboard controls, and hardware settings
---
### `calibrate(config): Promise<CalibrationProcess>`
Calibrates motor homing offsets and records range of motion. **Identical to Python lerobot behavior.**
```typescript
const calibrationProcess = await calibrate({
robot,
onProgress: (message) => {
console.log(message); // "โ๏ธ Setting motor homing offsets"
},
onLiveUpdate: (data) => {
// Real-time motor positions during range recording
Object.entries(data).forEach(([motor, info]) => {
console.log(`${motor}: ${info.current} (range: ${info.range})`);
});
},
});
// Move robot through full range of motion...
// When finished, stop calibration
calibrationProcess.stop();
const calibrationData = await calibrationProcess.result;
// Save to file (Python-compatible format)
import { writeFileSync } from "fs";
writeFileSync(
"./my_robot_calibration.json",
JSON.stringify(calibrationData, null, 2)
);
```
#### Options
- `config: CalibrateConfig`
- `robot: RobotConnection` - Connected robot from `connectPort()`
- `onProgress?: (message: string) => void` - Progress messages
- `onLiveUpdate?: (data: LiveCalibrationData) => void` - Real-time position updates
#### Returns: `CalibrationProcess`
- `result: Promise<CalibrationResults>` - **Python-compatible** calibration data
- `stop(): void` - Stop calibration process
#### Calibration Data Format
**Python Compatible**: This format is identical to Python lerobot calibration files - you can use the same calibration data across both implementations.
```json
{
"shoulder_pan": {
"id": 1,
"drive_mode": 0,
"homing_offset": 14,
"range_min": 1015,
"range_max": 3128
},
"shoulder_lift": {
"id": 2,
"drive_mode": 0,
"homing_offset": 989,
"range_min": 965,
"range_max": 3265
},
"elbow_flex": {
"id": 3,
"drive_mode": 0,
"homing_offset": -879,
"range_min": 820,
"range_max": 3051
},
"wrist_flex": {
"id": 4,
"drive_mode": 0,
"homing_offset": 31,
"range_min": 758,
"range_max": 3277
},
"wrist_roll": {
"id": 5,
"drive_mode": 0,
"homing_offset": -37,
"range_min": 2046,
"range_max": 3171
},
"gripper": {
"id": 6,
"drive_mode": 0,
"homing_offset": -1173,
"range_min": 2038,
"range_max": 3528
}
}
```
---
### `teleoperate(config): Promise<TeleoperationProcess>`
Real-time robot control with keyboard input. **Smooth, responsive movement** optimized for Node.js.
#### Keyboard Teleoperation
```typescript
const teleop = await teleoperate({
robot,
teleop: { type: "keyboard" },
onStateUpdate: (state) => {
console.log(`Active: ${state.isActive}`);
state.motorConfigs.forEach((motor) => {
console.log(`${motor.name}: ${motor.currentPosition}`);
});
},
});
// Start keyboard control
teleop.start();
// Control will be active until stopped
setTimeout(() => teleop.stop(), 60000);
```
#### Options
- `config: TeleoperateConfig`
- `robot: RobotConnection` - Connected robot
- `teleop: TeleoperatorConfig` - Teleoperator configuration:
- `{ type: "keyboard" }` - Keyboard control with optimized defaults
- `onStateUpdate?: (state: TeleoperationState) => void` - State change callback
#### Returns: `TeleoperationProcess`
- `start(): void` - Begin teleoperation (shows keyboard controls)
- `stop(): void` - Stop teleoperation
- `getState(): TeleoperationState` - Current state and motor positions
#### Keyboard Controls (SO-100)
```
Arrow Keys: Shoulder pan/lift
WASD: Elbow flex, wrist flex
Q/E: Wrist roll
O/C: Gripper open/close
ESC: Emergency stop
Ctrl+C: Exit
```
#### Performance Characteristics
- **120 Hz update rate** for smooth movement
- **Immediate response** on keypress (no delay)
- **8-unit step size** matching browser demo
- **150ms key timeout** for optimal single-tap vs hold behavior
---
### `releaseMotors(robot): Promise<void>`
Releases motor torque so robot can be moved freely by hand.
```typescript
// Release all motors for calibration
await releaseMotors(robot);
console.log("Motors released - you can now move the robot freely");
```
#### Parameters
- `robot: RobotConnection` - Connected robot
---
## CLI Usage
For command-line usage, install the CLI package:
```bash
# Install CLI globally
pnpm add -g lerobot
# Find and connect to robot
npx lerobot find-port
# Calibrate robot
npx lerobot calibrate --robot.type so100_follower --robot.port /dev/ttyUSB0 --robot.id my_robot
# Control robot with keyboard
npx lerobot teleoperate --robot.type so100_follower --robot.port /dev/ttyUSB0 --robot.id my_robot
# Release motors
npx lerobot release-motors --robot.type so100_follower --robot.port /dev/ttyUSB0 --robot.id my_robot
```
**CLI commands are identical to Python lerobot** - same syntax, same behavior, seamless migration.
## Node.js Requirements
- **Node.js 18+**
- **Serial port access** (may require permissions on Linux/macOS)
- **Supported platforms**: Windows, macOS, Linux
### Serial Port Permissions
**Linux/macOS:**
```bash
# Add user to dialout group (Linux)
sudo usermod -a -G dialout $USER
# Set permissions (macOS)
sudo chmod 666 /dev/tty.usbserial-*
```
**Windows:** No additional setup required.
## Hardware Support
Currently supports SO-100 follower and leader arms with STS3215 motors. More devices coming soon.
## Migration from lerobot.py
```python
# Python lerobot
python -m lerobot.calibrate --robot.type so100_follower --robot.port /dev/ttyUSB0
# Node.js equivalent
npx lerobot calibrate --robot.type so100_follower --robot.port /dev/ttyUSB0
```
- **Same commands** - just replace `python -m lerobot.` with `npx lerobot`
- **Same calibration files** - Python and Node.js calibrations are interchangeable
|