Skip to content

Commit

Permalink
Renamed package
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelchang committed Feb 14, 2016
1 parent 16c4af9 commit 88475ca
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 68 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 2.8.3)
project(jammi)
project(roscloud)

find_package(catkin REQUIRED COMPONENTS
rospy
Expand All @@ -8,7 +8,7 @@ find_package(catkin REQUIRED COMPONENTS

catkin_package(
# INCLUDE_DIRS include
# LIBRARIES jammi
# LIBRARIES roscloud
# CATKIN_DEPENDS rospy std_msgs
# DEPENDS system_lib
)
Expand Down
9 changes: 0 additions & 9 deletions launch/bar.launch

This file was deleted.

8 changes: 4 additions & 4 deletions launch/example.launch
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
<?xml version="1.0"?>
<launch>
<node pkg="jammi" type="client_node.py" name="foo_client_node" output="screen">
<node pkg="roscloud" type="client_node.py" name="foo_client_node" output="screen">
<param name="name" value="foo"/>
<param name="host" value="wallar.me"/>
<param name="port" value="9000"/>
</node>

<node pkg="jammi" type="client_node.py" name="bar_client_node" output="screen">
<node pkg="roscloud" type="client_node.py" name="bar_client_node" output="screen">
<param name="name" value="bar"/>
<param name="host" value="wallar.me"/>
<param name="port" value="9000"/>
</node>

<node pkg="jammi" type="client_node.py" name="baz_client_node" output="screen">
<node pkg="roscloud" type="client_node.py" name="baz_client_node" output="screen">
<param name="name" value="baz"/>
<param name="host" value="wallar.me"/>
<param name="port" value="9000"/>
</node>

<node pkg="jammi" type="client_node.py" name="qux_client_node" output="screen">
<node pkg="roscloud" type="client_node.py" name="qux_client_node" output="screen">
<param name="name" value="qux"/>
<param name="host" value="wallar.me"/>
<param name="port" value="9000"/>
Expand Down
19 changes: 0 additions & 19 deletions launch/foo.launch

This file was deleted.

8 changes: 0 additions & 8 deletions launch/server.launch

This file was deleted.

6 changes: 3 additions & 3 deletions package.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0"?>
<package>
<name>jammi</name>
<name>roscloud</name>
<version>0.0.1</version>
<description>Just Another Multi-Master Implementation</description>
<description>ROS Cloud Robotics Framework</description>
<maintainer email="[email protected]">Alex Wallar</maintainer>
<license>GPLv3</license>
<url type="website">http://github.com/wallarelvo/jammi</url>
<url type="website">http://github.com/roscloud/roscloud_client</url>
<buildtool_depend>catkin</buildtool_depend>
<build_depend>rospy</build_depend>
<build_depend>std_msgs</build_depend>
Expand Down
22 changes: 0 additions & 22 deletions scripts/run_server.py

This file was deleted.

2 changes: 1 addition & 1 deletion src/client_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from connection import Connection


NODE_NAME = "jammi_client"
NODE_NAME = "roscloud_client"


class JammiNode(object):
Expand Down

0 comments on commit 88475ca

Please sign in to comment.