-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
6,129 additions
and
2 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 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,24 @@ | ||
cmake_minimum_required(VERSION 2.8.3) | ||
project(rwt_steer) | ||
|
||
find_package(catkin REQUIRED COMPONENTS | ||
rosbridge_server | ||
roswww | ||
rwt_utils_3rdparty | ||
) | ||
|
||
catkin_package( | ||
CATKIN_DEPENDS rosbridge_server roswww rwt_utils_3rdparty | ||
) | ||
|
||
include_directories( | ||
${catkin_INCLUDE_DIRS} | ||
) | ||
|
||
install(DIRECTORY launch/ | ||
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch | ||
) | ||
|
||
install(DIRECTORY www/ | ||
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/www | ||
) |
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,17 @@ | ||
# rwt_steer | ||
|
||
## Usage | ||
|
||
```bash | ||
roslaunch rwt_steer rwt_steer.launch | ||
``` | ||
|
||
Open your browser, and access to `http://<your host name>:8000/rwt_steer/`. | ||
|
||
for example : `http://localhost:8000/rwt_steer/` | ||
|
||
- Control using Joystick | ||
- Add camera topic | ||
- Press Load video button | ||
|
||
![rwt_steer.png](./images/rwt_steer.png) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,22 @@ | ||
<launch> | ||
<arg name="launch_roswww" default="true" /> | ||
<arg name="launch_rosbridge_websocket" default="true" /> | ||
<arg name="launch_web_video_server" default="true" /> | ||
|
||
<include file="$(find roswww)/launch/roswww.launch" | ||
if="$(arg launch_roswww)"> | ||
<arg name="port" value="8000" /> | ||
</include> | ||
|
||
<include file="$(find rosbridge_server)/launch/rosbridge_websocket.launch" | ||
if="$(arg launch_rosbridge_websocket)"> | ||
<arg name="port" value="9090" /> | ||
</include> | ||
|
||
<node pkg="web_video_server" type="web_video_server" | ||
name="web_video_server" if="$(arg launch_web_video_server)" | ||
output="screen" | ||
clear_params="true"> | ||
<param name="port" value="8080" /> | ||
</node> | ||
</launch> |
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,29 @@ | ||
<?xml version="1.0"?> | ||
<package> | ||
<name>rwt_steer</name> | ||
<version>0.0.3</version> | ||
<description>The rwt_steer package</description> | ||
<author>Yug Ajmera</author> | ||
<maintainer email="[email protected]">Yug Ajmera</maintainer> | ||
|
||
<license>BSD</license> | ||
<buildtool_depend>catkin</buildtool_depend> | ||
<build_depend>rosbridge_server</build_depend> | ||
<build_depend>web_video_server</build_depend> | ||
<build_depend>rwt_utils_3rdparty</build_depend> | ||
<build_depend>roswww</build_depend> | ||
|
||
<run_depend>rosbridge_server</run_depend> | ||
<run_depend>rwt_utils_3rdparty</run_depend> | ||
<run_depend>web_video_server</run_depend> | ||
<run_depend>roswww</run_depend> | ||
|
||
|
||
<!-- The export tag contains other, unspecified, tags --> | ||
<export> | ||
<!-- You can specify that this package is a metapackage here: --> | ||
<!-- <metapackage/> --> | ||
<!-- Other tools can request additional information be placed here --> | ||
|
||
</export> | ||
</package> |
Oops, something went wrong.