Basic Question Mobile Robot cmd_vel
I'm on cturle, base is maverick and robot node is arm lucid and cturtle with an arduino as the actual robot controller.
My physical robot is a small cheap 4 wheel drive using skid steering,
I'm limited physically so my mobile robot is is the apartment, which is not small but tricky, with a bad floor surface for odometry and some areas's of magnetic variance....which I've got managed to a point. And some pretty tight doorways.
The robot has a compass and odometers and a sharp ir. I am using a crude gyro setup to detect where the compass goes off and the robot is not actually turning via the gyro.
But upshot is that what works best is driving to bearing and distance in straight lines and stop and skid turn to new bearing.
So I have my robot programmed from the arduino to follow waypoints. The surface magnetics motors/odometry are not upto variable speed turns on the go...I tried and lost that one.
From a ROS perspective I've got odom and laser scan working and sending the fixed transform base link -> base scan
So manually driving the arduino around things look quite good in rviz.
I have n't started mapping yet as I'm following the tutorials carefully.
I'm just writing (plagerising) a joystick teleop package and starting to hit some fundamentals. For teleop I can interface quite easily to the beagle/ board arduino, but I'm concerned I'm on the wrong path for move_base cmd_vel base_controller
Could I please just make sure I understand the output of cmd_vel.....
x and z I'm taking it that x is velocity and z is rate of angle change or is this x distance and bearing......
If the former is correct (what I fear) velocities how do I obtain/convert manage this over site in my work? waypoint data and not screw the nav stack ? The arduino side of my robot is not dumb and has taken quite alot of work to over come some issues.
Sorry to ask this one, I've been searching for a while.
Dave