Spaces:
Running
Running
File size: 8,302 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 |
/**
* Node.js calibration functionality using serialport API
* Provides both Python lerobot compatible CLI behavior and programmatic usage
* Uses proven calibration algorithms with web-compatible API
*/
import { NodeSerialPortWrapper } from "./utils/serial-port-wrapper.js";
import { createSO100Config } from "./robots/so100_config.js";
import {
readAllMotorPositions,
releaseMotors as releaseMotorsLowLevel,
type MotorCommunicationPort,
} from "./utils/motor-communication.js";
import {
setHomingOffsets,
writeHardwarePositionLimits,
} from "./utils/motor-calibration.js";
import { createInterface } from "readline";
import { writeFile } from "fs/promises";
import { join } from "path";
import { homedir } from "os";
// Debug logging removed - calibration working perfectly
import type {
CalibrateConfig,
CalibrationResults,
LiveCalibrationData,
CalibrationProcess,
} from "./types/calibration.js";
import type { RobotConnection } from "./types/robot-connection.js";
/**
* Get calibration file path (matches Python lerobot location)
*/
function getCalibrationFilePath(robotType: string, robotId: string): string {
const HF_HOME =
process.env.HF_HOME || join(homedir(), ".cache", "huggingface");
const calibrationDir = join(
HF_HOME,
"lerobot",
"calibration",
"robots",
robotType
);
return join(calibrationDir, `${robotId}.json`);
}
/**
* Create readline interface for user input
*/
function createReadlineInterface() {
return createInterface({
input: process.stdin,
output: process.stdout,
});
}
/**
* Wait for user input with a prompt
*/
function waitForInput(rl: any, prompt: string): Promise<string> {
return new Promise((resolve) => {
rl.question(prompt, (answer: string) => {
resolve(answer);
});
});
}
/**
* Record ranges of motion with live updates
*/
async function recordRangesOfMotion(
port: MotorCommunicationPort,
motorIds: number[],
motorNames: string[],
shouldStop: () => boolean,
onLiveUpdate?: (data: LiveCalibrationData) => void,
onProgress?: (message: string) => void
): Promise<{
rangeMins: { [motor: string]: number };
rangeMaxes: { [motor: string]: number };
}> {
const rangeMins: { [motor: string]: number } = {};
const rangeMaxes: { [motor: string]: number } = {};
// Read actual current positions (now centered due to applied homing offsets)
const startPositions = await readAllMotorPositions(port, motorIds);
for (let i = 0; i < motorNames.length; i++) {
const motorName = motorNames[i];
rangeMins[motorName] = startPositions[i];
rangeMaxes[motorName] = startPositions[i];
}
if (onProgress) {
onProgress(
"Move each motor through its full range of motion. The ranges will be recorded automatically."
);
onProgress(
"Press Enter when you have finished moving all motors through their ranges."
);
} else {
console.log(
"Move each motor through its full range of motion. The ranges will be recorded automatically."
);
console.log(
"Press Enter when you have finished moving all motors through their ranges."
);
}
// Set up readline for user input
const rl = createReadlineInterface();
let isRecording = true;
// Start recording in background
const recordingInterval = setInterval(async () => {
if (!isRecording) return;
try {
const currentPositions = await readAllMotorPositions(port, motorIds);
const liveData: LiveCalibrationData = {};
for (let i = 0; i < motorNames.length; i++) {
const motorName = motorNames[i];
const position = currentPositions[i];
// Update ranges
rangeMins[motorName] = Math.min(rangeMins[motorName], position);
rangeMaxes[motorName] = Math.max(rangeMaxes[motorName], position);
// Build live data
liveData[motorName] = {
current: position,
min: rangeMins[motorName],
max: rangeMaxes[motorName],
range: rangeMaxes[motorName] - rangeMins[motorName],
};
}
if (onLiveUpdate) {
onLiveUpdate(liveData);
}
} catch (error) {
// Silent - continue recording
}
}, 100); // Update every 100ms
// Wait for user to finish
try {
await waitForInput(rl, "");
// IMMEDIATELY stop recording and live updates
isRecording = false;
clearInterval(recordingInterval);
} finally {
// Ensure cleanup even if there's an error
isRecording = false;
clearInterval(recordingInterval);
rl.close();
}
return { rangeMins, rangeMaxes };
}
/**
* Main calibrate function with web-compatible API
*/
export async function calibrate(
config: CalibrateConfig
): Promise<CalibrationProcess> {
const { robot, onLiveUpdate, onProgress, outputPath } = config;
// Validate robot configuration
if (!robot.robotType) {
throw new Error(
"Robot type is required for calibration. Please configure the robot first."
);
}
if (!robot.isConnected || !robot.port) {
throw new Error(
"Robot is not connected. Please use findPort() to connect first."
);
}
let shouldStop = false;
let port: NodeSerialPortWrapper | null = null;
const calibrationPromise = (async (): Promise<CalibrationResults> => {
try {
// Use the EXISTING port connection (don't create new one!)
port = robot.port;
// Get robot-specific configuration
let robotConfig;
if (robot.robotType.startsWith("so100")) {
robotConfig = createSO100Config(robot.robotType);
} else {
throw new Error(`Unsupported robot type: ${robot.robotType}`);
}
const { motorIds, motorNames, driveModes } = robotConfig;
// Debug logging removed - calibration working perfectly
// Starting calibration silently
// Step 1: Set homing offsets (motors should already be released and positioned)
// Note: Motors should be released BEFORE calling calibrate(), not inside it
// Setting homing offsets silently
const homingOffsets = await setHomingOffsets(port, motorIds, motorNames);
// Early debug test removed - calibration working perfectly
if (shouldStop) throw new Error("Calibration stopped by user");
// Step 2: Record ranges of motion silently
const { rangeMins, rangeMaxes } = await recordRangesOfMotion(
port,
motorIds,
motorNames,
() => shouldStop,
onLiveUpdate,
onProgress
);
if (shouldStop) throw new Error("Calibration stopped by user");
// Step 3: Write hardware position limits silently
await writeHardwarePositionLimits(
port,
motorIds,
motorNames,
rangeMins,
rangeMaxes
);
// Step 4: Skip motor locking (Python lerobot doesn't lock motors after calibration)
// Build calibration results (Python lerobot compatible format)
const calibrationResults: CalibrationResults = {};
for (let i = 0; i < motorNames.length; i++) {
const motorName = motorNames[i];
const homingOffsetValue = homingOffsets[motorName];
calibrationResults[motorName] = {
id: motorIds[i],
drive_mode: driveModes[i],
homing_offset: homingOffsetValue,
range_min: rangeMins[motorName],
range_max: rangeMaxes[motorName],
};
}
// Save calibration file
const calibrationPath =
outputPath ||
getCalibrationFilePath(robot.robotType, robot.robotId || "default");
// Ensure directory exists
const { mkdir } = await import("fs/promises");
const { dirname } = await import("path");
await mkdir(dirname(calibrationPath), { recursive: true });
await writeFile(
calibrationPath,
JSON.stringify(calibrationResults, null, 2)
);
if (onProgress) {
onProgress(`Calibration complete! Saved to: ${calibrationPath}`);
} else {
console.log(`Calibration complete! Saved to: ${calibrationPath}`);
}
return calibrationResults;
} finally {
// Note: Don't close the port - it belongs to the robot connection
}
})();
return {
stop(): void {
shouldStop = true;
},
result: calibrationPromise,
};
}
|