-
Notifications
You must be signed in to change notification settings - Fork 48
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
Code for controlling Spot in simulation #27
Comments
Setting up ROSA for physical robot control is implementation-specific. That's one of the reasons we decided to be un-opinionated when it comes to uplink command and control. For the demo, we basically gave ROSA an Xbox controller. It publishes joystick messages (axes and button presses) to the graph TD;
ROSA --> |/joy| JoyMux{JoyMux};
XboxCtrl --> |/joy| JoyMux{JoyMux};
JoyMux --> |/joy_cmd| TeleopJoy;
TeleopJoy --> |/cmd_vel| Spot
Can you tell me how you're currently controlling the robot (e.g. publishing to Alternatively, you can check out the |
I am currently controlling the Spot robot by publishing velocity commands to the /spot/cmd_vel topic, which are then processed by a ROS node to execute the desired movements using the Spot SDK. If you are considering to create a general implementation, then using Spot with arm would be better. I am interested in the following capabilities:
|
In the YouTube demo video, a Spot robot was being controlled via ROSA. I couldn't find the code used in the demo video. It would be helpful if code used to control a Spot robot in simulation was available. Thank you.
The text was updated successfully, but these errors were encountered: