Spaces:
Running
Running
File size: 8,294 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 |
/**
* Keyboard teleoperator for Node.js platform using stdin
*/
import {
BaseNodeTeleoperator,
type TeleoperatorSpecificState,
} from "./base-teleoperator.js";
import type { KeyboardControl } from "../types/robot-config.js";
import type {
KeyboardTeleoperatorConfig,
MotorConfig,
TeleoperationState,
} from "../types/teleoperation.js";
import type { MotorCommunicationPort } from "../utils/motor-communication.js";
import {
readMotorPosition,
writeMotorPosition,
} from "../utils/motor-communication.js";
/**
* Default configuration values for keyboard teleoperator
*/
export const KEYBOARD_TELEOPERATOR_DEFAULTS = {
stepSize: 8, // Keep browser demo step size
updateRate: 120, // Higher frequency for smoother movement (120 Hz)
keyTimeout: 150, // Shorter for better single taps, accept some gap on hold
} as const;
export class KeyboardTeleoperator extends BaseNodeTeleoperator {
private keyboardControls: { [key: string]: KeyboardControl } = {};
private updateInterval: NodeJS.Timeout | null = null;
private keyStates: {
[key: string]: { pressed: boolean; timestamp: number };
} = {};
private onStateUpdate?: (state: TeleoperationState) => void;
// Configuration values
private readonly stepSize: number;
private readonly updateRate: number;
private readonly keyTimeout: number;
constructor(
config: KeyboardTeleoperatorConfig,
port: MotorCommunicationPort,
motorConfigs: MotorConfig[],
keyboardControls: { [key: string]: KeyboardControl },
onStateUpdate?: (state: TeleoperationState) => void
) {
super(port, motorConfigs);
this.keyboardControls = keyboardControls;
this.onStateUpdate = onStateUpdate;
// Set configuration values
this.stepSize = config.stepSize ?? KEYBOARD_TELEOPERATOR_DEFAULTS.stepSize;
this.updateRate =
config.updateRate ?? KEYBOARD_TELEOPERATOR_DEFAULTS.updateRate;
this.keyTimeout =
config.keyTimeout ?? KEYBOARD_TELEOPERATOR_DEFAULTS.keyTimeout;
}
async initialize(): Promise<void> {
// Set up stdin for raw keyboard input
if (process.stdin.setRawMode) {
process.stdin.setRawMode(true);
}
process.stdin.resume();
process.stdin.setEncoding("utf8");
// Set up keyboard input handler
process.stdin.on("data", this.handleKeyboardInput.bind(this));
// Read current motor positions
for (const config of this.motorConfigs) {
const position = await readMotorPosition(this.port, config.id);
if (position !== null) {
config.currentPosition = position;
}
}
}
start(): void {
if (this.isActive) return;
this.isActive = true;
this.updateInterval = setInterval(() => {
this.updateMotorPositions();
}, 1000 / this.updateRate);
// Display keyboard controls
this.displayControls();
}
stop(): void {
if (!this.isActive) return;
this.isActive = false;
if (this.updateInterval) {
clearInterval(this.updateInterval);
this.updateInterval = null;
}
// Clear all key states
this.keyStates = {};
// Notify of state change
if (this.onStateUpdate) {
this.onStateUpdate(this.buildTeleoperationState());
}
}
getState(): TeleoperatorSpecificState {
return {
keyStates: { ...this.keyStates },
};
}
updateKeyState(key: string, pressed: boolean): void {
this.keyStates[key] = {
pressed,
timestamp: Date.now(),
};
}
private handleKeyboardInput(key: string): void {
if (!this.isActive) return;
// Handle special keys
if (key === "\u0003") {
// Ctrl+C
process.exit(0);
}
if (key === "\u001b") {
// Escape
this.stop();
return;
}
// Handle regular keys - START IMMEDIATE CONTINUOUS MOVEMENT
const keyName = this.mapKeyToName(key);
if (keyName && this.keyboardControls[keyName]) {
// If key is already active, just refresh timestamp
if (this.keyStates[keyName]) {
this.keyStates[keyName].timestamp = Date.now();
} else {
// New key press - start continuous movement immediately
this.updateKeyState(keyName, true);
// Move immediately on first press (don't wait for interval)
this.moveMotorForKey(keyName);
}
}
}
private moveMotorForKey(keyName: string): void {
const control = this.keyboardControls[keyName];
if (!control || control.motor === "emergency_stop") return;
const motorConfig = this.motorConfigs.find((m) => m.name === control.motor);
if (!motorConfig) return;
// Calculate new position
const newPosition =
motorConfig.currentPosition + control.direction * this.stepSize;
// Apply limits
const clampedPosition = Math.max(
motorConfig.minPosition,
Math.min(motorConfig.maxPosition, newPosition)
);
// Send motor command immediately
writeMotorPosition(this.port, motorConfig.id, Math.round(clampedPosition))
.then(() => {
motorConfig.currentPosition = clampedPosition;
})
.catch((error) => {
console.warn(`Failed to move motor ${motorConfig.id}:`, error);
});
}
private updateMotorPositions(): void {
const now = Date.now();
// Clear timed-out keys
Object.keys(this.keyStates).forEach((key) => {
if (now - this.keyStates[key].timestamp > this.keyTimeout) {
delete this.keyStates[key];
}
});
// Process active keys
const activeKeys = Object.keys(this.keyStates).filter(
(key) =>
this.keyStates[key].pressed &&
now - this.keyStates[key].timestamp <= this.keyTimeout
);
// Emergency stop check
if (activeKeys.includes("Escape")) {
this.stop();
return;
}
// Calculate target positions based on active keys
const targetPositions: { [motorName: string]: number } = {};
for (const key of activeKeys) {
const control = this.keyboardControls[key];
if (!control || control.motor === "emergency_stop") continue;
const motorConfig = this.motorConfigs.find(
(m) => m.name === control.motor
);
if (!motorConfig) continue;
// Calculate new position
const currentTarget =
targetPositions[motorConfig.name] ?? motorConfig.currentPosition;
const newPosition = currentTarget + control.direction * this.stepSize;
// Apply limits
targetPositions[motorConfig.name] = Math.max(
motorConfig.minPosition,
Math.min(motorConfig.maxPosition, newPosition)
);
}
// Send motor commands and update positions
Object.entries(targetPositions).forEach(([motorName, targetPosition]) => {
const motorConfig = this.motorConfigs.find((m) => m.name === motorName);
if (motorConfig && targetPosition !== motorConfig.currentPosition) {
writeMotorPosition(
this.port,
motorConfig.id,
Math.round(targetPosition)
)
.then(() => {
motorConfig.currentPosition = targetPosition;
})
.catch((error) => {
console.warn(
`Failed to write motor ${motorConfig.id} position:`,
error
);
});
}
});
}
private mapKeyToName(key: string): string | null {
// Map stdin input to key names
const keyMap: { [key: string]: string } = {
"\u001b[A": "ArrowUp",
"\u001b[B": "ArrowDown",
"\u001b[C": "ArrowRight",
"\u001b[D": "ArrowLeft",
w: "w",
s: "s",
a: "a",
d: "d",
q: "q",
e: "e",
o: "o",
c: "c",
};
return keyMap[key] || null;
}
private displayControls(): void {
console.log("\n=== Robot Teleoperation Controls ===");
console.log("Arrow Keys: Shoulder pan/lift");
console.log("WASD: Elbow flex / Wrist flex");
console.log("Q/E: Wrist roll");
console.log("O/C: Gripper open/close");
console.log("ESC: Emergency stop");
console.log("Ctrl+C: Exit");
console.log("=====================================\n");
}
private buildTeleoperationState(): TeleoperationState {
return {
isActive: this.isActive,
motorConfigs: [...this.motorConfigs],
lastUpdate: Date.now(),
keyStates: { ...this.keyStates },
};
}
}
|