-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Updates the teleop_se3 and record_demos scripts with more helpful description for teleop_device parameter #3642
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,11 @@ | |
"--teleop_device", | ||
type=str, | ||
default="keyboard", | ||
help="Device for interacting with environment. Examples: keyboard, spacemouse, gamepad, handtracking, manusvive", | ||
help=( | ||
"Teleop device. Set here (legacy) or via the environment config. If using the environment config, pass the" | ||
" device key/name defined under 'teleop_devices' (it can be a custom name, not necessarily 'handtracking')." | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Where is teleop_devices defined? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In the environment config |
||
" Built-ins: keyboard, spacemouse, gamepad. Not all tasks support all built-ins." | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just curious, why There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It;s robot specific and requires the retargeters to be configured. |
||
), | ||
) | ||
parser.add_argument("--task", type=str, default=None, help="Name of the task.") | ||
parser.add_argument("--sensitivity", type=float, default=1.0, help="Sensitivity factor.") | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This always overrides to keyboard right now. Is that intentional?