Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add reling link #474

Merged
merged 5 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions husarion_ugv_description/rviz/husarion_ugv.rviz
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@ Visualization Manager:
Swap Stereo Eyes: false
Value: false
Focal Point:
X: 1.012673020362854
Y: 0.033135633915662766
Z: 0.347855806350708
X: 0
Y: 0
Z: 0
Focal Shape Fixed Size: false
Focal Shape Size: 0.05000000074505806
Invert Z Axis: false
Expand All @@ -196,7 +196,7 @@ Visualization Manager:
Pitch: 0.5903985500335693
Target Frame: <Fixed Frame>
Value: Orbit (rviz)
Yaw: 1.3703993558883667
Yaw: 3.7
Saved: ~
Window Geometry:
Displays:
Expand Down
8 changes: 8 additions & 0 deletions husarion_ugv_description/urdf/lynx/base.urdf.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -115,5 +115,13 @@

<link name="cover_link" />

<joint name="cover_to_mount_joint" type="fixed">
<origin xyz="0.0 0.0 0.0315" rpy="0.0 0.0 0.0" />
<parent link="cover_link" />
<child link="mount_link" />
</joint>

<link name="mount_link" />

</xacro:macro>
</robot>
10 changes: 9 additions & 1 deletion husarion_ugv_description/urdf/panther/base.urdf.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,20 @@
<link name="lights_channel_2_link" />

<joint name="base_to_cover_joint" type="fixed">
<origin xyz="0.0 0.0 0.1715" rpy="0.0 0.0 0.0" />
<origin xyz="0.0 0.0 0.14" rpy="0.0 0.0 0.0" />
<parent link="base_link" />
<child link="cover_link" />
</joint>

<link name="cover_link" />

<joint name="cover_to_mount_joint" type="fixed">
<origin xyz="0.0 0.0 0.0315" rpy="0.0 0.0 0.0" />
<parent link="cover_link" />
<child link="mount_link" />
</joint>

<link name="mount_link" />

</xacro:macro>
</robot>
2 changes: 1 addition & 1 deletion husarion_ugv_gazebo/src/led_strip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ void LEDStrip::PreUpdate(const gz::sim::UpdateInfo & info, gz::sim::EntityCompon
VisualizeLights(ecm, image);

auto light_pose = ecm.Component<gz::sim::components::Pose>(light_entity_)->Data();
VisualizeMarkers(image, light_pose);
// VisualizeMarkers(image, light_pose);
rafal-gorecki marked this conversation as resolved.
Show resolved Hide resolved

last_update_time_ = current_time;
}
Expand Down
Loading