Spaces:
Running
Running
File size: 11,629 Bytes
7a0c9ff f680c3f 7a0c9ff a8d792f 7a0c9ff a8d792f 7a0c9ff f680c3f 7a0c9ff a8d792f 7a0c9ff f680c3f 7a0c9ff f680c3f 7a0c9ff a8d792f f680c3f a8d792f 7a0c9ff a8d792f 7a0c9ff a8d792f 7a0c9ff a8d792f 7a0c9ff a8d792f f680c3f a8d792f f680c3f 7a0c9ff f680c3f 7a0c9ff f680c3f 7a0c9ff f680c3f a8d792f f680c3f a8d792f f680c3f 7a0c9ff f680c3f a8d792f f680c3f 7a0c9ff a8d792f |
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 |
"use client";
import { useState, useMemo, useEffect, useCallback } from "react";
import { Download } from "lucide-react";
import { Button } from "@/components/ui/button";
import { Card } from "@/components/ui/card";
import {
AlertDialog,
AlertDialogAction,
AlertDialogCancel,
AlertDialogContent,
AlertDialogDescription,
AlertDialogFooter,
AlertDialogHeader,
AlertDialogTitle,
} from "@/components/ui/alert-dialog";
import { useToast } from "@/hooks/use-toast";
import {
calibrate,
releaseMotors,
type CalibrationProcess,
type LiveCalibrationData,
type WebCalibrationResults,
type RobotConnection,
} from "@lerobot/web";
import {
saveCalibrationData,
getUnifiedRobotData,
type CalibrationMetadata,
} from "@/lib/unified-storage";
import { MotorCalibrationVisual } from "@/components/motor-calibration-visual";
interface CalibrationViewProps {
robot: RobotConnection;
}
export function CalibrationView({ robot }: CalibrationViewProps) {
const [status, setStatus] = useState("Ready to calibrate.");
const [liveData, setLiveData] = useState<LiveCalibrationData | null>(null);
const [isCalibrating, setIsCalibrating] = useState(false);
const [isPreparing, setIsPreparing] = useState(false);
const [showHomingDialog, setShowHomingDialog] = useState(false);
const [calibrationProcess, setCalibrationProcess] =
useState<CalibrationProcess | null>(null);
const [calibrationResults, setCalibrationResults] =
useState<WebCalibrationResults | null>(null);
const { toast } = useToast();
// Load existing calibration data from unified storage
useEffect(() => {
if (robot.serialNumber) {
const data = getUnifiedRobotData(robot.serialNumber);
if (data?.calibration) {
setCalibrationResults(data.calibration);
}
}
}, [robot.serialNumber]);
// Motor names for display
const motorNames = useMemo(
() => [
"shoulder_pan",
"shoulder_lift",
"elbow_flex",
"wrist_flex",
"wrist_roll",
"gripper",
],
[]
);
// Release motor torque before calibration
const releaseMotorTorque = useCallback(async () => {
try {
setIsPreparing(true);
setStatus("π Releasing motor torque - joints can now be moved freely");
await releaseMotors(robot);
setStatus("β
Joints are now free to move - ready to start calibration");
toast({
title: "Motors Released",
description: "Robot joints can now be moved freely for calibration",
});
} catch (error) {
console.error("Failed to release motor torque:", error);
setStatus("β οΈ Could not release motor torque - try moving joints gently");
toast({
title: "Motor Release Warning",
description:
"Could not release motor torque. Try moving joints gently.",
variant: "destructive",
});
} finally {
setIsPreparing(false);
}
}, [robot, toast]);
const handleStart = async () => {
try {
setIsPreparing(true);
setStatus("π€ Preparing for calibration...");
// Release motors first
await releaseMotorTorque();
// Show dialog asking user to put robot in homing position
setShowHomingDialog(true);
} catch (error) {
console.error("Failed to prepare for calibration:", error);
setStatus(
`β Preparation failed: ${
error instanceof Error ? error.message : error
}`
);
toast({
title: "Preparation Failed",
description:
error instanceof Error ? error.message : "An unknown error occurred",
variant: "destructive",
});
setIsPreparing(false);
}
};
const handleStartCalibration = async () => {
try {
setShowHomingDialog(false);
setIsCalibrating(true);
setIsPreparing(false);
setStatus("π€ Starting calibration process...");
// Start calibration process
const process = await calibrate({
robot,
onLiveUpdate: (data) => {
setLiveData(data);
setStatus(
"π Recording joint ranges - move all joints through their full range"
);
},
onProgress: (message) => {
setStatus(message);
},
});
setCalibrationProcess(process);
// Add Enter key listener for stopping (matching Node.js UX)
const handleKeyPress = (event: KeyboardEvent) => {
if (event.key === "Enter") {
process.stop();
}
};
document.addEventListener("keydown", handleKeyPress);
try {
// Wait for calibration to complete
const result = await process.result;
setCalibrationResults(result);
// Save results to unified storage
if (robot.serialNumber) {
const metadata: CalibrationMetadata = {
timestamp: new Date().toISOString(),
readCount: Object.keys(liveData || {}).length > 0 ? 100 : 0,
};
// Use the result directly as WebCalibrationResults
saveCalibrationData(robot.serialNumber, result, metadata);
}
setStatus(
"β
Calibration completed successfully! Configuration saved."
);
toast({
title: "Calibration Complete",
description: "Robot calibration has been saved successfully",
});
} finally {
document.removeEventListener("keydown", handleKeyPress);
setCalibrationProcess(null);
setIsCalibrating(false);
}
} catch (error) {
console.error("Calibration failed:", error);
setStatus(
`β Calibration failed: ${
error instanceof Error ? error.message : error
}`
);
toast({
title: "Calibration Failed",
description:
error instanceof Error ? error.message : "An unknown error occurred",
variant: "destructive",
});
setIsCalibrating(false);
setCalibrationProcess(null);
}
};
const handleCancelCalibration = () => {
setShowHomingDialog(false);
setIsPreparing(false);
setStatus("Ready to calibrate.");
};
const handleFinish = async () => {
if (calibrationProcess) {
try {
calibrationProcess.stop();
toast({
title: "Calibration Stopped",
description: "Calibration recording has been stopped",
});
} catch (error) {
console.error("Failed to stop calibration:", error);
toast({
title: "Stop Error",
description: "Failed to stop calibration cleanly",
variant: "destructive",
});
}
}
};
const downloadJson = () => {
if (!calibrationResults) return;
try {
const dataStr =
"data:text/json;charset=utf-8," +
encodeURIComponent(JSON.stringify(calibrationResults, null, 2));
const downloadAnchorNode = document.createElement("a");
downloadAnchorNode.setAttribute("href", dataStr);
downloadAnchorNode.setAttribute(
"download",
`${robot.robotId}_calibration.json`
);
document.body.appendChild(downloadAnchorNode);
downloadAnchorNode.click();
downloadAnchorNode.remove();
toast({
title: "Download Started",
description: "Calibration file download has started",
});
} catch (error) {
console.error("Failed to download calibration file:", error);
toast({
title: "Download Error",
description: "Failed to download calibration file",
variant: "destructive",
});
}
};
const motorData = useMemo(
() =>
liveData
? Object.entries(liveData)
: motorNames.map((name) => [
name,
{ current: 0, min: 4095, max: 0, range: 0 },
]),
[liveData, motorNames]
);
return (
<>
<Card className="border-0 rounded-none">
<div className="p-4 border-b border-white/10 flex items-center justify-between">
<div className="flex items-center gap-4">
<div className="w-1 h-8 bg-primary"></div>
<div>
<h3 className="text-xl font-bold text-foreground font-mono tracking-wider uppercase">
motor calibration
</h3>
<p className="text-sm text-muted-foreground font-mono">
{status}
</p>
</div>
</div>
<div className="flex gap-4">
{!isCalibrating ? (
<Button
onClick={handleStart}
size="lg"
disabled={isPreparing || !robot.isConnected}
>
{isPreparing
? "Preparing..."
: calibrationResults
? "Re-calibrate"
: "Start Calibration"}
</Button>
) : (
<Button onClick={handleFinish} variant="destructive" size="lg">
Finish Recording
</Button>
)}
<Button
onClick={downloadJson}
variant="outline"
size="lg"
disabled={!calibrationResults}
>
<Download className="w-4 h-4 mr-2" /> Download JSON
</Button>
</div>
</div>
<div className="pt-6 p-6">
<div className="flex items-center gap-4 py-2 px-4 text-sm font-sans text-muted-foreground">
<div className="w-40">Motor Name</div>
<div className="flex-1">Visual Range</div>
<div className="w-16 text-right">Current</div>
<div className="w-16 text-right">Min</div>
<div className="w-16 text-right">Max</div>
<div className="w-16 text-right">Range</div>
</div>
<div className="border-t border-white/10">
{motorData.map(([name, data]) => (
<MotorCalibrationVisual
key={name as string}
name={name as string}
data={
data as {
current: number;
min: number;
max: number;
range: number;
}
}
/>
))}
</div>
</div>
</Card>
<AlertDialog open={showHomingDialog} onOpenChange={setShowHomingDialog}>
<AlertDialogContent>
<AlertDialogHeader>
<AlertDialogTitle>Position Robot for Calibration</AlertDialogTitle>
<AlertDialogDescription>
The motors have been released and are now free to move. Please
position the robot in its homing position:
<br />
<br />
β’ Move all joints to their center/neutral position
<br />
β’ Ensure the robot is in a comfortable, balanced pose
<br />
β’ Make sure all motors can move freely through their full range
<br />
<br />
Once the robot is positioned correctly, click "Start Calibration"
to begin recording joint ranges.
</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter>
<AlertDialogCancel onClick={handleCancelCalibration}>
Cancel
</AlertDialogCancel>
<AlertDialogAction onClick={handleStartCalibration}>
Start Calibration
</AlertDialogAction>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
</>
);
}
|