Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
About show the ghost of the robot's current posture
#1
嗨RoboDK团队,


How can I use the command "robot.ShowSequence()" to show the ghost of the robot's current posture?
I would appreciate your advice on the code.

Look forward to your reply.
Best Regards,

Keisuke Sakai
#2
We just added the Reachability app to theApps section of our GitHub repository.This RoboDK app shows an example to use the ShowSequence function to display reachable and unreachable poses. You can provide a list of robot poses or a list of robot joint values.

You can pass flags to control the colour and behavior of using ShowSequence. You'll also find this example here:
C:/RoboDK/Apps/Reachability/CheckReachability.py

Code:
# Force reset
robot.ShowSequence([])

# Show reachable poses:
robot.ShowSequence(reachable_poses, Display_Default, timeout_reachable)

# Show unreachable poses:
robot.ShowSequence(unreachable_poses, Display_Red, timeout_unreachable)




Users browsing this thread:
1 Guest(s)