Spaces:
Running
Running
File size: 8,613 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 294 295 296 297 298 299 300 |
/**
* Node.js port discovery using serialport API
* Provides programmatic port discovery compatible with @lerobot/web API
*/
import { SerialPort } from "serialport";
import { platform } from "os";
import { readdir } from "fs/promises";
import { join } from "path";
import { NodeSerialPortWrapper } from "./utils/serial-port-wrapper.js";
import type {
FindPortConfig,
FindPortProcess,
DiscoveredPort,
RobotConnection,
} from "./types/port-discovery.js";
/**
* Find available serial ports on the system
* Mirrors Python's find_available_ports() function
* Exported for CLI usage
*/
export async function findAvailablePorts(): Promise<string[]> {
if (platform() === "win32") {
// List COM ports using serialport library (equivalent to pyserial)
const ports = await SerialPort.list();
return ports.map((port) => port.path);
} else {
// List /dev/tty* ports for Unix-based systems (Linux/macOS)
try {
const devFiles = await readdir("/dev");
const ttyPorts = devFiles
.filter((file) => file.startsWith("tty"))
.map((file) => join("/dev", file));
return ttyPorts;
} catch (error) {
// Fallback to serialport library if /dev reading fails
const ports = await SerialPort.list();
return ports.map((port) => port.path);
}
}
}
/**
* Connect directly to a robot port (Python lerobot compatible)
* Equivalent to robot.connect() in Python lerobot
*/
export async function connectPort(
portPath: string,
robotType: "so100_follower" | "so100_leader" = "so100_follower",
robotId: string = "robot"
): Promise<RobotConnection> {
// Test connection
const port = new NodeSerialPortWrapper(portPath);
let isConnected = false;
try {
await port.initialize();
isConnected = true;
await port.close();
} catch (error) {
// Connection failed
}
// Return the ACTUAL working port, properly initialized!
const workingPort = new NodeSerialPortWrapper(portPath);
// Initialize the working port if connection test succeeded
if (isConnected) {
try {
await workingPort.initialize();
} catch (error) {
isConnected = false;
}
}
return {
port: workingPort, // β Return the initialized working port!
name: `Robot on ${portPath}`,
robotType,
robotId,
isConnected,
serialNumber: portPath, // Use port path as serial number for Node.js
error: isConnected ? undefined : "Connection failed",
};
}
/**
* Interactive mode: Return discovered robot ports (Node.js style)
* Unlike web version, this only discovers - user must call connectPort() separately
*/
async function findPortInteractive(
options: FindPortConfig
): Promise<DiscoveredPort[]> {
const { onMessage } = options;
onMessage?.("π Searching for available robot ports...");
// Get all available ports
const availablePorts = await findAvailablePorts();
if (availablePorts.length === 0) {
throw new Error("No serial ports found");
}
onMessage?.(
`Found ${availablePorts.length} port(s), first available: ${availablePorts[0]}`
);
// Return discovered ports (no connection attempt)
return availablePorts.map((path) => ({
path,
robotType: "so100_follower" as const, // Default type, user can override
}));
}
/**
* Auto-connect mode: Connect to robots by serial number/port path
* Returns all connection attempts (successful and failed)
*/
async function findPortAutoConnect(
robotConfigs: NonNullable<FindPortConfig["robotConfigs"]>,
options: FindPortConfig
): Promise<RobotConnection[]> {
const { onMessage } = options;
const results: RobotConnection[] = [];
onMessage?.(`π Auto-connecting to ${robotConfigs.length} robot(s)...`);
for (const config of robotConfigs) {
try {
onMessage?.(
`Connecting to ${config.robotId} (${config.serialNumber})...`
);
// Use serialNumber as port path for Node.js
const connection = await connectPort(config.serialNumber);
if (connection.isConnected) {
onMessage?.(`β
Connected to ${config.robotId}`);
results.push({
...connection,
robotType: config.robotType,
robotId: config.robotId,
serialNumber: config.serialNumber,
});
} else {
onMessage?.(`β Failed to connect to ${config.robotId}`);
results.push({
...connection,
robotType: config.robotType,
robotId: config.robotId,
serialNumber: config.serialNumber,
isConnected: false,
error: connection.error || "Connection failed",
});
}
} catch (error) {
onMessage?.(
`β Error connecting to ${config.robotId}: ${
error instanceof Error ? error.message : error
}`
);
results.push({
port: {
path: config.serialNumber,
write: async () => {},
read: async () => null,
open: async () => {},
close: async () => {},
isOpen: false,
},
name: `Failed: ${config.robotId}`,
isConnected: false,
robotType: config.robotType,
robotId: config.robotId,
serialNumber: config.serialNumber,
error: error instanceof Error ? error.message : "Unknown error",
});
}
}
const successCount = results.filter((r) => r.isConnected).length;
onMessage?.(
`π― Connected to ${successCount}/${robotConfigs.length} robot(s)`
);
return results;
}
/**
* Main findPort function - Node.js discovery-only API
*
* Discovers available robot ports without connecting.
* User must call connectPort() separately to establish connections.
*/
export async function findPort(
config: FindPortConfig = {}
): Promise<FindPortProcess> {
const { onMessage } = config;
let stopped = false;
onMessage?.("π€ Interactive port discovery started");
// Create result promise
const resultPromise = (async () => {
if (stopped) {
throw new Error("Port discovery was stopped");
}
return await findPortInteractive(config);
})();
// Return process object
return {
result: resultPromise,
stop: () => {
stopped = true;
onMessage?.("π Port discovery stopped");
},
};
}
/**
* Interactive port detection for CLI usage only
* Matches Python lerobot's unplug/replug cable detection exactly
* This function should only be used by the CLI, not the library
*/
export async function detectPortInteractive(
onMessage?: (message: string) => void
): Promise<string> {
const { createInterface } = await import("readline");
const rl = createInterface({
input: process.stdin,
output: process.stdout,
});
function waitForInput(prompt: string): Promise<string> {
return new Promise((resolve) => {
rl.question(prompt, (answer: string) => {
resolve(answer);
});
});
}
try {
const message = "Finding all available ports for the MotorsBus.";
if (onMessage) onMessage(message);
else console.log(message);
// Get initial port list
const portsBefore = await findAvailablePorts();
const disconnectPrompt =
"Remove the USB cable from your MotorsBus and press Enter when done.";
await waitForInput(disconnectPrompt);
// Get port list after disconnect
const portsAfter = await findAvailablePorts();
// Find the difference
const portsDiff = portsBefore.filter((port) => !portsAfter.includes(port));
if (portsDiff.length === 1) {
const detectedPort = portsDiff[0];
const successMessage = `Detected port: ${detectedPort}`;
if (onMessage) onMessage(successMessage);
else console.log(successMessage);
const reconnectPrompt =
"Reconnect the USB cable to your MotorsBus and press Enter when done.";
await waitForInput(reconnectPrompt);
// Verify the port is back
const portsReconnected = await findAvailablePorts();
if (portsReconnected.includes(detectedPort)) {
const verifyMessage = `Verified port: ${detectedPort}`;
if (onMessage) onMessage(verifyMessage);
else console.log(verifyMessage);
return detectedPort;
} else {
throw new Error("Port not found after reconnection");
}
} else if (portsDiff.length === 0) {
throw new Error(
"No port difference detected. Please check cable connection."
);
} else {
throw new Error(
`Multiple ports detected: ${portsDiff.join(
", "
)}. Please disconnect other devices.`
);
}
} finally {
rl.close();
}
}
|