Spaces:
Running
Running
File size: 7,271 Bytes
130bae4 |
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 |
/**
* Keyboard teleoperator for Web platform
*/
import {
BaseWebTeleoperator,
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, // Position units per keypress (smooth responsive control)
updateRate: 60, // Control loop FPS (60 Hz for smooth updates)
keyTimeout: 10000, // Key state timeout in ms (10 seconds for virtual buttons)
} as const;
export class KeyboardTeleoperator extends BaseWebTeleoperator {
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> {
// 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);
}
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 UI 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(),
};
}
/**
* Move motor to exact position (for sliders and direct control)
* This ensures sliders update the same motor configs that the UI displays
*/
async moveMotor(motorName: string, targetPosition: number): Promise<boolean> {
const motorConfig = this.motorConfigs.find((m) => m.name === motorName);
if (!motorConfig) return false;
const clampedPosition = Math.max(
motorConfig.minPosition,
Math.min(motorConfig.maxPosition, targetPosition)
);
try {
await writeMotorPosition(
this.port,
motorConfig.id,
Math.round(clampedPosition)
);
motorConfig.currentPosition = clampedPosition;
// Notify UI of position change for immediate slider update
if (this.onStateUpdate) {
this.onStateUpdate(this.buildTeleoperationState());
}
return true;
} catch (error) {
console.warn(`Failed to move motor ${motorName}:`, error);
return false;
}
}
private buildTeleoperationState(): TeleoperationState {
return {
isActive: this.isActive,
motorConfigs: [...this.motorConfigs],
lastUpdate: Date.now(),
keyStates: { ...this.keyStates },
};
}
/**
* IMPORTANT: This method implements the WORKING keyboard control logic.
*
* β οΈ DO NOT MODIFY THIS LOGIC! β οΈ
*
* This simple approach works perfectly:
* - If key is pressed β apply movement every update cycle
* - stepSize: 8 units per cycle at 60Hz = smooth, responsive control
* - Single taps work naturally (brief key press = few cycles = small movement)
* - Held keys work naturally (continuous press = continuous movement)
*
* Previous "improvements" that BROKE this:
* β Trying to detect "first press" vs "held" - breaks everything
* β Adding delays/thresholds - makes it clunky
* β Event-driven immediate movement - causes multiple applications
* β Higher stepSize values - too large jumps
*
* Keep it simple - this works!
*/
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
// SIMPLE RULE: If key is pressed β apply movement (works perfectly!)
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
);
});
}
});
}
}
|