-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from WHILL/melodic-generation-2
ros_whill 2.0. ros-melodic is only supported as of June 11. ros-kinetic support will be followed upon request.
- Loading branch information
Showing
34 changed files
with
1,713 additions
and
1,328 deletions.
There are no files selected for viewing
This file contains 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 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 was deleted.
Oops, something went wrong.
This file contains 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,32 @@ | ||
<launch> | ||
<arg name="model" default="$(find ros_whill)/xacro/modelc.xacro" /> | ||
<arg name="gui" default="true" /> | ||
|
||
<param name="robot_description" command="$(find xacro)/xacro $(arg model)"/> | ||
|
||
<node name="robot_state_publisher" pkg="robot_state_publisher" type="robot_state_publisher"> | ||
<remap from="/joint_states" to="/whill/states/jointState" /> | ||
</node> | ||
|
||
<arg name="serialport" default="$(env TTY_WHILL)"/> | ||
|
||
<node pkg="ros_whill" type="ros_whill" name="whill" output="screen" > | ||
|
||
<!-- Initial Speed Profile --> | ||
<rosparam file="$(find ros_whill)/params/initial_speedprofile.yaml" command="load" /> | ||
|
||
<!-- Keep Connected: If you specify true,ros_whill try to keep connection by re-opening port and sending power on command. | ||
If you'd like to turn WHILL off by command or manually while using ros_whill, set value to false. | ||
Otherwise WHILL automatically turns on. | ||
--> | ||
<param name="keep_connected" value="true" /> | ||
|
||
<!-- Serial Device name --> | ||
<param name="serialport" value="$(arg serialport)"/> | ||
|
||
<!-- Output Odometry tf or not. If other node publishes odom->base_link tf, Change value to "false" --> | ||
<param name="publish_tf" value="true"/> | ||
|
||
</node> | ||
</launch> | ||
|
This file was deleted.
Oops, something went wrong.
This file contains 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,3 @@ | ||
float32 speed # m/s or rad/s | ||
float32 acc # m/ss or rad/ss | ||
float32 dec # m/ss or rad/ss |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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 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,12 @@ | ||
# | ||
# Initial Speed Profile | ||
# | ||
init_speed/forward/speed: 0.567 # [m/s] | ||
init_speed/forward/acc: 0.23 # [m/ss] | ||
init_speed/forward/dec: 1.25 # [m/ss] | ||
init_speed/backward/speed: 0.557 # [m/s] | ||
init_speed/backward/acc: 0.34 # [m/ss] | ||
init_speed/backward/dec: 0.89 # [m/ss] | ||
init_speed/turn/speed: 0.8 # [rad/s] | ||
init_speed/turn/acc: 0.79 # [rad/ss] | ||
init_speed/turn/dec: 1.8 # [rad/ss] |
Oops, something went wrong.