No transform from [front_left_wheel] to [base_link]
hi, i'm trying to add wheels to base link on rviz, but i can't solve that error RobotModel/StatusError/No transform from [front_left_wheel] to [base_link]
In terminal there is an error too: i wrote codes from github/qboticslabs/qboticslabs_website (In my launch, state_publisher is written)
dif_robot.xacro
<robot <a="" href="http://xmlns:xacro="http://www.ros.org/wiki/xacro%22" name="dif_robot">xmlns:xacro="http://www.ros.org/wiki/...></robot>
<xacro:include filename="$(find pan_tilt)/urdf/wheel.xacro" />
<!-- renk tanımlama -->
<material name="Black">
<color rgba="0.0 0.0 0.0 1.0"/>
</material>
<material name="White">
<color rgba="1.0 1.0 1.0 1.0"/>
</material>
<material name="Red">
<color rgba="0.8 0.0 0.0 1.0"/>
</material>
<material name="Blue">
<color rgba="0.0 0.0 1.0 1.0"/>
</material>
<property name="M_PI" value="3.1415926535897931" />
<property name="M_PI_2" value="1.570796327" />
<property name="DEG_TO_RAD" value="0.017453293" />
<property name="base_height" value="0.02" />
<property name="base_radius" value="0.15" />
<property name="base_mass" value="5" />
<property name="caster_f_height" value="0.04" />
<property name="caster_f_radius" value="0.025" />
<property name="caster_f_mass" value="0.5" />
<property name="caster_b_height" value="0.04" />
<property name="caster_b_radius" value="0.025" />
<property name="caster_b_mass" value="0.5" />
<property name="wheel_mass" value="2.5" />
<property name="base_x_origin_to_wheel_origin" value="0.25" />
<property name="base_y_origin_to_wheel_origin" value="0.3" />
<property name="base_z_origin_to_wheel_origin" value="0.0" />
<property name="hokuyo_size" value="0.05" />
<macro name="cylinder_inertia" params="m r h">
<inertia ixx="${m*(3*r*r+h*h)/12}" ixy="0.0" ixz="0.0"
iyy="${m*(3*r*r+h*h)/12}" iyz="0.0"
izz="${m*r*r/2}"/>
</macro>
<!--base_footprint-->
<link name="base_footprint">
<inertial>
<origin xyz="0.0 0.0 0.0"/>
<mass value="0.0001"/>
<inertia ixx="0.0001" ixy="0.0" ixz="0.0"
iyy="0.0001" iyz="0.0"
izz="0.0001"/>
</inertial>
<visual>
<origin xyz="0.0 0.0 0.0" rpy="0.0 0.0 0.0"/>
<geometry>
<box size="0.001 0.001 0.001"/>
</geometry>
</visual>
</link>
<gazebo reference="base_footprint">
<turnGravityOff>false</turnGravityOff>
</gazebo>
<joint name="base_footprint_joint" type="fixed">
<origin xyz="0.0 0.0 ${wheel_radius - base_z_origin_to_wheel_origin}" rpy="0.0 0.0 0.0"/>
<parent link="base_footprint"/>
<child link="base_link"/>
</joint>
<!-- base link -->
<link name="base_link">
<inertial>
<origin xyz="0.0 0.0 0.0"/>
<mass value="${base_mass}"/>
<cylinder_inertia m="${base_mass}" r="${base_radius}" h="${base_height}"/>
</inertial>
<visual>
<origin xyz="0.0 0.0 0.0" rpy="0.0 0.0 0.0"/>
<geometry>
<cylinder length="${base_height}" radius="${base_radius}"/>
</geometry>
<material name="White"/>
</visual>
<collision>
<origin xyz="0.0 0 ...