Spaces:
Running
Running
File size: 19,372 Bytes
130ae50 130bae4 130ae50 130bae4 130ae50 130bae4 130ae50 130bae4 130ae50 130bae4 130ae50 130bae4 130ae50 130bae4 130ae50 dc82a28 130ae50 130bae4 130ae50 130bae4 130ae50 130bae4 130ae50 130bae4 130ae50 130bae4 130ae50 130bae4 130ae50 dc82a28 130bae4 130ae50 dc82a28 130ae50 130bae4 130ae50 130bae4 130ae50 130bae4 130ae50 130bae4 130ae50 130bae4 130ae50 130bae4 130ae50 1a7b22d 130bae4 1a7b22d 130bae4 1a7b22d 130ae50 130bae4 130ae50 130bae4 130ae50 |
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 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 |
import { useState, useEffect, useRef, useCallback } from "react";
import { Button } from "./ui/button";
import { Card, CardContent, CardHeader, CardTitle } from "./ui/card";
import { Badge } from "./ui/badge";
import { Alert, AlertDescription } from "./ui/alert";
import {
teleoperate,
type TeleoperationProcess,
type TeleoperationState,
type TeleoperateConfig,
} from "@lerobot/web";
import { getUnifiedRobotData } from "../lib/unified-storage";
import type { RobotConnection } from "@lerobot/web";
import { SO100_KEYBOARD_CONTROLS } from "@lerobot/web";
interface TeleoperationPanelProps {
robot: RobotConnection;
onClose: () => void;
}
export function TeleoperationPanel({
robot,
onClose,
}: TeleoperationPanelProps) {
const [teleoperationState, setTeleoperationState] =
useState<TeleoperationState>({
isActive: false,
motorConfigs: [],
lastUpdate: 0,
keyStates: {},
});
const [error, setError] = useState<string | null>(null);
const [, setIsInitialized] = useState(false);
// Separate refs for keyboard and direct teleoperators
const keyboardProcessRef = useRef<TeleoperationProcess | null>(null);
const directProcessRef = useRef<TeleoperationProcess | null>(null);
// Initialize both teleoperation processes
useEffect(() => {
const initializeTeleoperation = async () => {
if (!robot || !robot.robotType) {
setError("No robot configuration available");
return;
}
try {
// Load calibration data from demo storage (app concern)
let calibrationData;
if (robot.serialNumber) {
const data = getUnifiedRobotData(robot.serialNumber);
calibrationData = data?.calibration;
if (calibrationData) {
console.log("โ
Loaded calibration data for", robot.serialNumber);
}
}
// Create keyboard teleoperation process
const keyboardConfig: TeleoperateConfig = {
robot: robot,
teleop: {
type: "keyboard",
},
calibrationData,
onStateUpdate: (state: TeleoperationState) => {
setTeleoperationState(state);
},
};
const keyboardProcess = await teleoperate(keyboardConfig);
// Create direct teleoperation process
const directConfig: TeleoperateConfig = {
robot: robot,
teleop: {
type: "direct",
},
calibrationData,
};
const directProcess = await teleoperate(directConfig);
keyboardProcessRef.current = keyboardProcess;
directProcessRef.current = directProcess;
setTeleoperationState(keyboardProcess.getState());
setIsInitialized(true);
setError(null);
console.log("โ
Initialized both keyboard and direct teleoperators");
} catch (error) {
const errorMessage =
error instanceof Error
? error.message
: "Failed to initialize teleoperation";
setError(errorMessage);
console.error("โ Failed to initialize teleoperation:", error);
}
};
initializeTeleoperation();
return () => {
// Cleanup on unmount
const cleanup = async () => {
try {
if (keyboardProcessRef.current) {
await keyboardProcessRef.current.disconnect();
keyboardProcessRef.current = null;
}
if (directProcessRef.current) {
await directProcessRef.current.disconnect();
directProcessRef.current = null;
}
console.log("๐งน Teleoperation cleanup completed");
} catch (error) {
console.warn("Error during teleoperation cleanup:", error);
}
};
cleanup();
};
}, [robot]);
// Keyboard event handlers
const handleKeyDown = useCallback(
(event: KeyboardEvent) => {
if (!teleoperationState.isActive || !keyboardProcessRef.current) return;
const key = event.key;
event.preventDefault();
keyboardProcessRef.current.updateKeyState(key, true);
},
[teleoperationState.isActive]
);
const handleKeyUp = useCallback(
(event: KeyboardEvent) => {
if (!teleoperationState.isActive || !keyboardProcessRef.current) return;
const key = event.key;
event.preventDefault();
keyboardProcessRef.current.updateKeyState(key, false);
},
[teleoperationState.isActive]
);
// Register keyboard events
useEffect(() => {
if (teleoperationState.isActive) {
window.addEventListener("keydown", handleKeyDown);
window.addEventListener("keyup", handleKeyUp);
return () => {
window.removeEventListener("keydown", handleKeyDown);
window.removeEventListener("keyup", handleKeyUp);
};
}
}, [teleoperationState.isActive, handleKeyDown, handleKeyUp]);
const handleStart = () => {
if (!keyboardProcessRef.current || !directProcessRef.current) {
setError("Teleoperation not initialized");
return;
}
try {
keyboardProcessRef.current.start();
directProcessRef.current.start();
console.log("๐ฎ Both keyboard and direct teleoperation started");
} catch (error) {
const errorMessage =
error instanceof Error
? error.message
: "Failed to start teleoperation";
setError(errorMessage);
}
};
const handleStop = async () => {
try {
if (keyboardProcessRef.current) {
keyboardProcessRef.current.stop();
}
if (directProcessRef.current) {
directProcessRef.current.stop();
}
console.log("๐ Both keyboard and direct teleoperation stopped");
} catch (error) {
console.warn("Error during teleoperation stop:", error);
}
};
const handleClose = async () => {
try {
if (keyboardProcessRef.current) {
keyboardProcessRef.current.stop();
await keyboardProcessRef.current.disconnect();
}
if (directProcessRef.current) {
directProcessRef.current.stop();
await directProcessRef.current.disconnect();
}
console.log("๐ Properly disconnected from robot");
} catch (error) {
console.warn("Error during teleoperation cleanup:", error);
}
onClose();
};
const simulateKeyPress = (key: string) => {
if (!keyboardProcessRef.current) return;
keyboardProcessRef.current.updateKeyState(key, true);
};
const simulateKeyRelease = (key: string) => {
if (!keyboardProcessRef.current) return;
keyboardProcessRef.current.updateKeyState(key, false);
};
// Unified motor control: Both sliders AND keyboard use the same teleoperator
// This ensures the UI always shows the correct motor positions
const moveMotorToPosition = async (motorIndex: number, position: number) => {
if (!keyboardProcessRef.current) return;
try {
const motorName = teleoperationState.motorConfigs[motorIndex]?.name;
if (motorName) {
const keyboardTeleoperator = keyboardProcessRef.current
.teleoperator as any;
await keyboardTeleoperator.moveMotor(motorName, position);
}
} catch (error) {
console.warn(
`Failed to move motor ${motorIndex + 1} to position ${position}:`,
error
);
}
};
const isConnected = robot?.isConnected || false;
const isActive = teleoperationState.isActive;
const motorConfigs = teleoperationState.motorConfigs;
const keyStates = teleoperationState.keyStates;
// Virtual keyboard component
const VirtualKeyboard = () => {
const isKeyPressed = (key: string) => {
return keyStates?.[key]?.pressed || false;
};
const KeyButton = ({
keyCode,
children,
className = "",
size = "default" as "default" | "sm" | "lg" | "icon",
}: {
keyCode: string;
children: React.ReactNode;
className?: string;
size?: "default" | "sm" | "lg" | "icon";
}) => {
const control =
SO100_KEYBOARD_CONTROLS[
keyCode as keyof typeof SO100_KEYBOARD_CONTROLS
];
const pressed = isKeyPressed(keyCode);
const handleMouseDown = (e: React.MouseEvent) => {
e.preventDefault();
if (!isActive) return;
simulateKeyPress(keyCode);
};
const handleMouseUp = (e: React.MouseEvent) => {
e.preventDefault();
if (!isActive) return;
simulateKeyRelease(keyCode);
};
return (
<Button
variant={pressed ? "default" : "outline"}
size={size}
className={`
${className}
${
pressed
? "bg-blue-600 text-white shadow-inner"
: "hover:bg-gray-100"
}
transition-all duration-75 font-mono text-xs
${!isActive ? "opacity-50 cursor-not-allowed" : ""}
`}
disabled={!isActive}
onMouseDown={handleMouseDown}
onMouseUp={handleMouseUp}
onMouseLeave={handleMouseUp}
title={control?.description || keyCode}
>
{children}
</Button>
);
};
return (
<div className="space-y-4">
{/* Arrow Keys */}
<div className="text-center">
<h4 className="text-xs font-semibold mb-2 text-gray-600">Shoulder</h4>
<div className="flex flex-col items-center gap-1">
<KeyButton keyCode="ArrowUp" size="sm">
โ
</KeyButton>
<div className="flex gap-1">
<KeyButton keyCode="ArrowLeft" size="sm">
โ
</KeyButton>
<KeyButton keyCode="ArrowDown" size="sm">
โ
</KeyButton>
<KeyButton keyCode="ArrowRight" size="sm">
โ
</KeyButton>
</div>
</div>
</div>
{/* WASD Keys */}
<div className="text-center">
<h4 className="text-xs font-semibold mb-2 text-gray-600">
Elbow/Wrist
</h4>
<div className="flex flex-col items-center gap-1">
<KeyButton keyCode="w" size="sm">
W
</KeyButton>
<div className="flex gap-1">
<KeyButton keyCode="a" size="sm">
A
</KeyButton>
<KeyButton keyCode="s" size="sm">
S
</KeyButton>
<KeyButton keyCode="d" size="sm">
D
</KeyButton>
</div>
</div>
</div>
{/* Q/E and Gripper */}
<div className="flex justify-center gap-2">
<div className="text-center">
<h4 className="text-xs font-semibold mb-2 text-gray-600">Roll</h4>
<div className="flex gap-1">
<KeyButton keyCode="q" size="sm">
Q
</KeyButton>
<KeyButton keyCode="e" size="sm">
E
</KeyButton>
</div>
</div>
<div className="text-center">
<h4 className="text-xs font-semibold mb-2 text-gray-600">
Gripper
</h4>
<div className="flex gap-1">
<KeyButton keyCode="o" size="sm">
O
</KeyButton>
<KeyButton keyCode="c" size="sm">
C
</KeyButton>
</div>
</div>
</div>
{/* Emergency Stop */}
<div className="text-center border-t pt-2">
<KeyButton
keyCode="Escape"
className="bg-red-100 border-red-300 hover:bg-red-200 text-red-800 text-xs"
>
ESC
</KeyButton>
</div>
</div>
);
};
return (
<div className="min-h-screen bg-gradient-to-br from-blue-50 to-indigo-100">
<div className="container mx-auto px-6 py-8">
{/* Header */}
<div className="flex justify-between items-center mb-6">
<div>
<h1 className="text-3xl font-bold text-gray-900">
๐ฎ Robot Teleoperation
</h1>
<p className="text-gray-600">
{robot.robotId || robot.name} - {robot.serialNumber}
</p>
</div>
<Button variant="outline" onClick={handleClose}>
โ Back to Dashboard
</Button>
</div>
{/* Error Alert */}
{error && (
<Alert variant="destructive" className="mb-6">
<AlertDescription>{error}</AlertDescription>
</Alert>
)}
<div className="grid grid-cols-1 lg:grid-cols-3 gap-6">
{/* Status Panel */}
<Card>
<CardHeader>
<CardTitle className="flex items-center gap-2">
Status
<Badge variant={isConnected ? "default" : "destructive"}>
{isConnected ? "Connected" : "Disconnected"}
</Badge>
</CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<div className="flex items-center justify-between">
<span className="text-sm text-gray-600">Teleoperation</span>
<Badge variant={isActive ? "default" : "secondary"}>
{isActive ? "Active" : "Stopped"}
</Badge>
</div>
<div className="flex items-center justify-between">
<span className="text-sm text-gray-600">Active Keys</span>
<Badge variant="outline">
{
Object.values(keyStates || {}).filter(
(state) => state.pressed
).length
}
</Badge>
</div>
<div className="space-y-2">
{isActive ? (
<Button
onClick={handleStop}
variant="destructive"
className="w-full"
>
โน๏ธ Stop Teleoperation
</Button>
) : (
<Button
onClick={handleStart}
disabled={!isConnected}
className="w-full"
>
โถ๏ธ Start Teleoperation
</Button>
)}
</div>
</CardContent>
</Card>
{/* Virtual Keyboard */}
<Card>
<CardHeader>
<CardTitle>Virtual Keyboard</CardTitle>
</CardHeader>
<CardContent>
<VirtualKeyboard />
</CardContent>
</Card>
{/* Motor Status */}
<Card>
<CardHeader>
<CardTitle>Motor Positions</CardTitle>
</CardHeader>
<CardContent className="space-y-3">
{motorConfigs.map((motor, index) => {
return (
<div key={motor.name} className="space-y-1">
<div className="flex justify-between items-center">
<span className="text-sm font-medium">
{motor.name.replace("_", " ")}
</span>
<span className="text-xs text-gray-500">
{motor.currentPosition}
</span>
</div>
<input
type="range"
min={motor.minPosition}
max={motor.maxPosition}
value={motor.currentPosition}
disabled={!isActive}
className={`w-full h-2 rounded-lg appearance-none cursor-pointer bg-gray-200 slider-thumb ${
!isActive ? "opacity-50 cursor-not-allowed" : ""
}`}
style={{
background: isActive
? `linear-gradient(to right, #3b82f6 0%, #3b82f6 ${
((motor.currentPosition - motor.minPosition) /
(motor.maxPosition - motor.minPosition)) *
100
}%, #e5e7eb ${
((motor.currentPosition - motor.minPosition) /
(motor.maxPosition - motor.minPosition)) *
100
}%, #e5e7eb 100%)`
: "#e5e7eb",
}}
onChange={async (e) => {
if (!isActive) return;
const newPosition = parseInt(e.target.value);
try {
await moveMotorToPosition(index, newPosition);
} catch (error) {
console.warn(
"Failed to move motor via slider:",
error
);
}
}}
/>
<div className="flex justify-between text-xs text-gray-400">
<span>{motor.minPosition}</span>
<span>{motor.maxPosition}</span>
</div>
</div>
);
})}
</CardContent>
</Card>
</div>
{/* Help Card */}
<Card className="mt-6">
<CardHeader>
<CardTitle>Control Instructions</CardTitle>
</CardHeader>
<CardContent>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 text-sm">
<div>
<h4 className="font-semibold mb-2">Arrow Keys</h4>
<ul className="space-y-1 text-gray-600">
<li>โ โ Shoulder lift</li>
<li>โ โ Shoulder pan</li>
</ul>
</div>
<div>
<h4 className="font-semibold mb-2">WASD Keys</h4>
<ul className="space-y-1 text-gray-600">
<li>W S Elbow flex</li>
<li>A D Wrist flex</li>
</ul>
</div>
<div>
<h4 className="font-semibold mb-2">Other Keys</h4>
<ul className="space-y-1 text-gray-600">
<li>Q E Wrist roll</li>
<li>O Open gripper</li>
<li>C Close gripper</li>
</ul>
</div>
<div>
<h4 className="font-semibold mb-2 text-red-700">Emergency</h4>
<ul className="space-y-1 text-red-600">
<li>ESC Emergency stop</li>
</ul>
</div>
</div>
<div className="mt-4 p-3 bg-blue-50 rounded-lg">
<p className="text-sm text-blue-800">
๐ก <strong>Pro tip:</strong> Use your physical keyboard for
faster control, or click the virtual keys below. Hold keys down
for continuous movement.
</p>
</div>
</CardContent>
</Card>
</div>
</div>
);
}
|