NERDDISCO commited on
Commit
2f9d34f
·
1 Parent(s): 7496471

refactor: remove teleop alias; use the same example robot.id

Browse files
Files changed (1) hide show
  1. packages/cli/src/cli.ts +2 -8
packages/cli/src/cli.ts CHANGED
@@ -204,7 +204,7 @@ program
204
  `
205
  Examples:
206
  $ lerobot calibrate --robot.type=so100_follower --robot.port=/dev/ttyUSB0 --robot.id=my_arm
207
- $ lerobot calibrate --robot.type=so100_follower --robot.port=COM4 --robot.id=production_arm
208
  `
209
  )
210
  .action(async (options) => {
@@ -319,7 +319,6 @@ Examples:
319
  */
320
  program
321
  .command("teleoperate")
322
- .alias("teleop")
323
  .description("Control robot through teleoperation")
324
  .requiredOption("--robot.type <type>", "Robot type (e.g., so100_follower)")
325
  .requiredOption(
@@ -334,12 +333,7 @@ program
334
  `
335
  Examples:
336
  $ lerobot teleoperate --robot.type=so100_follower --robot.port=/dev/ttyUSB0 --robot.id=my_arm
337
- $ lerobot teleop --robot.type=so100_follower --robot.port=COM4 --robot.id=my_arm --duration=60
338
-
339
- Controls:
340
- w/s - Motor 1 q/e - Motor 3 t/g - Motor 5
341
- a/d - Motor 2 r/f - Motor 4 y/h - Motor 6
342
- Ctrl+C - Stop and exit
343
  `
344
  )
345
  .action(async (options) => {
 
204
  `
205
  Examples:
206
  $ lerobot calibrate --robot.type=so100_follower --robot.port=/dev/ttyUSB0 --robot.id=my_arm
207
+ $ lerobot calibrate --robot.type=so100_follower --robot.port=COM4 --robot.id=my_arm
208
  `
209
  )
210
  .action(async (options) => {
 
319
  */
320
  program
321
  .command("teleoperate")
 
322
  .description("Control robot through teleoperation")
323
  .requiredOption("--robot.type <type>", "Robot type (e.g., so100_follower)")
324
  .requiredOption(
 
333
  `
334
  Examples:
335
  $ lerobot teleoperate --robot.type=so100_follower --robot.port=/dev/ttyUSB0 --robot.id=my_arm
336
+ $ lerobot teleoperate --robot.type=so100_follower --robot.port=COM4 --robot.id=my_arm
 
 
 
 
 
337
  `
338
  )
339
  .action(async (options) => {