ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

20sffactory's profile - activity

2021-03-14 15:41:31 -0500 received badge  Famous Question (source)
2021-03-08 11:32:22 -0500 received badge  Famous Question (source)
2020-11-10 23:42:11 -0500 received badge  Notable Question (source)
2020-08-11 02:22:19 -0500 commented question Syncing Arduino motor movements with Rviz "joint_states"

I ended up using customised Marlin 1.1.x as the receiving end on Arduino which seems much smoother. Still under experime

2020-08-07 18:07:47 -0500 received badge  Student (source)
2020-08-07 18:07:41 -0500 received badge  Notable Question (source)
2020-08-07 18:07:41 -0500 received badge  Popular Question (source)
2020-07-12 05:25:03 -0500 received badge  Enthusiast
2020-07-08 22:09:56 -0500 received badge  Popular Question (source)
2020-07-08 22:09:33 -0500 asked a question Syncing Arduino motor movements with Rviz "joint_states"

Syncing Arduino motor movements with Rviz "joint_states" Hi, I am using rosserial_arduino to connect to Rviz running Mov

2020-07-08 21:48:19 -0500 received badge  Supporter (source)
2020-06-17 02:13:32 -0500 marked best answer joint_state_publisher won't move Rviz robot model

Hello, I'm a total beginner in ROS. I have written a basic URDF of 2 links and 1 joint and try to simulate on Rviz.

After running roslaunch robot_description rviz.launch, rviz appears as usual with joint state publisher window, after adding Robot Model, when I change the value on joint state publisher, the joint link won't move.

May I know what I have done wrong? Thank you.

Code Here:

<?xml version="1.0"?>
<robot name="robot">

  <material name = "blue">
    <color rgba="0 0 0.8 1"/>
  </material>

  <material name = "white">
    <color rgba="1 1 1 1"/>
  </material>

  <link name="base">
    <visual>
      <geometry>
        <cylinder length="0.055" radius="0.055"/>
      </geometry>
      <material name="blue"/>
    </visual>
  </link>

  <link name="body">
    <visual>
      <geometry>
        <box size="0.06 0.06 0.084"/>
      </geometry>
      <origin rpy="0 0 0" xyz="0 0 0"/>
      <material name="white"/>
    </visual>
  </link>

  <joint name="base_body" type="continuous">
    <parent link="base"/>
    <child link="body"/>
    <axis xyz="0 0 1"/>
    <origin xyz="0 0 0"/>
  </joint>

</robot>
2020-06-17 02:12:43 -0500 commented question joint_state_publisher won't move Rviz robot model

I've found out my error, I fixed my frame at "body", so as I move joint_state_publisher, it's actually moving the base,

2020-06-17 02:12:43 -0500 asked a question joint_state_publisher won't move Rviz robot model

joint_state_publisher won't move Rviz robot model Hello, I'm a total beginner in ROS. I have written a basic URDF of 2 l