forked from UniversalRobots/Universal_Robots_ROS_Driver
-
Notifications
You must be signed in to change notification settings - Fork 0
📈 🎉 Pub joint temps #1
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
Merged
Merged
Changes from 3 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
fae86ef
Add `ur_rtde_msgs` package; include msg for joint temps
cgeering d657b9b
First pass at publishing joint temps
cgeering 6222cf8
Fix bad vector assignment when creating joint temp msg
cgeering 7ff5f47
Add newline to end of Joint Temps msg
cgeering f0ed055
Rename `ur_rtde_msgs`->`ur_extra_msgs`
cgeering File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,3 +25,4 @@ safety_mode | |
robot_status_bits | ||
safety_status_bits | ||
actual_current | ||
joint_temperatures |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
cmake_minimum_required(VERSION 2.8.3) | ||
project(ur_rtde_msgs) | ||
|
||
set(MESSAGE_DEPENDENCIES | ||
std_msgs | ||
) | ||
|
||
## Find catkin macros and libraries | ||
find_package(catkin REQUIRED | ||
COMPONENTS | ||
message_generation | ||
${MESSAGE_DEPENDENCIES} | ||
) | ||
|
||
add_message_files( | ||
DIRECTORY msg/ | ||
) | ||
|
||
generate_messages( | ||
DEPENDENCIES | ||
${MESSAGE_DEPENDENCIES} | ||
) | ||
|
||
## The catkin_package macro generates cmake config files for your package | ||
## Declare things to be passed to dependent projects | ||
catkin_package( | ||
CATKIN_DEPENDS | ||
message_runtime | ||
${MESSAGE_DEPENDENCIES} | ||
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# This message holds data to describe the temperatures of all robot joints. | ||
Header header | ||
|
||
string[] joint_names | ||
float64[] temperatures | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0"?> | ||
<package format="2"> | ||
<name>ur_rtde_msgs</name> | ||
cgeering marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
<version>0.0.0</version> | ||
<description>Messages to encapsulate data UR RTDE packets</description> | ||
|
||
<maintainer email="[email protected]">Chef Robotics</maintainer> | ||
<license>proprietary</license> | ||
<url type="website">https://github.com/chef-robotics/Universal_Robots_ROS_Driver</url> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> | ||
|
||
<!-- Core dependencies --> | ||
<build_depend>message_generation</build_depend> | ||
<exec_depend>message_runtime</exec_depend> | ||
|
||
<!-- Message dependencies should be declared with `depend` --> | ||
<depend>std_msgs</depend> | ||
|
||
</package> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.