Spaces:
Running
Running
File size: 8,876 Bytes
7a0c9ff a8d792f 7a0c9ff a8d792f 7a0c9ff a8d792f 7a0c9ff a8d792f 7a0c9ff a8d792f 7a0c9ff a8d792f 7a0c9ff a8d792f 7a0c9ff a8d792f 7a0c9ff a8d792f 7a0c9ff a8d792f 7a0c9ff a8d792f 7a0c9ff a8d792f 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 |
"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 { 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 [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 {
setIsCalibrating(true);
setStatus("π€ Starting calibration process...");
// Release motors first
await releaseMotorTorque();
// 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 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..." : "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>
);
}
|