Skip to content
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

deleate arm up part of t pose script #662

Merged
merged 1 commit into from
Feb 27, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 0 additions & 31 deletions bitbots_lowlevel/bitbots_ros_control/scripts/pose_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,37 +126,6 @@ def main():
f"{Style.BRIGHT}Press enter to continue.{Style.RESET_ALL}"
)

################
# Arms-Up-Pose #
################

step += 1
input(
f"\n{Fore.YELLOW}{num_to_emoji(step)}: The robot will now move {Style.BRIGHT}its arms up and its head to the right.{Style.RESET_ALL}\n"
f"{Style.BRIGHT}Press enter to move.{Style.RESET_ALL}"
)

move_to_joint_position(
pub,
{
"LElbow": -math.pi / 2,
"LShoulderRoll": -math.pi,
"RElbow": math.pi / 2,
"RShoulderRoll": math.pi,
"HeadPan": -math.pi / 2,
},
)

input(
f"{Style.BRIGHT}\nChecks:{Style.RESET_ALL}\n"
"- Check that all limbs are straight.\n"
"- Check that both arms are symmetrical.\n"
"- Check that the head looks 90 degrees to the right.\n"
"- Check that the head is horizontal.\n"
"- Check for backlash and loose parts.\n"
f"{Style.BRIGHT}Press enter to continue.{Style.RESET_ALL}"
)

##########################
# Arms-To-The-Front-Pose #
##########################
Expand Down
Loading