dispatching to nav2 targets on the command line.... #69
-
Is there a method to record a waypoint within Rviz2 or other to a file ? I would like to wrote a python application that will dispatch the robot to a room closest to an outdoor Blink Camera event, barking along the way, linger around the room a bit and then return to my hobby room and recharge until the next event. Events are going to be time and webhook driven. A typical timed even would be to roll into my home office while I'm working... and make dog breathing sounds... sleep there. At random times leave and roam the house. I'm happy with the progress I made so far. Right now if an object has a pedestal to bot detects it, but since it's too close when the bot rotates left/right to navigate around the object it hazard sensor detects it's blocked and stops.. led on top flashes yellow. Thanks everyone for the help, I appreciate it. By the way.. all the graphical ui applications such as Rviz2 runs remotely on my PC. rmw_fastrtps_cpp works extremely well. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Regarding recording a waypoint, Regarding the flashing yellow light, did you modify the |
Beta Was this translation helpful? Give feedback.
Regarding recording a waypoint,
ros2 bag record
will subscribe to topics, but that might not be what you are looking for (more documentation here is you are curious https://docs.ros.org/en/galactic/Tutorials/Ros2bag/Recording-And-Playing-Back-Data.html). If you just want to see the position of a waypoint that you can then put in your python script to execute in a time sequence, you could just useros2 topic echo
on the waypoint topic to print out what the coordinates are, then code them into your python application.Regarding the flashing yellow light, did you modify the
safety_override
mode? If you are using the default modenone
, the robot has limited ability to back up because it doesn…