ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

hiro64's profile - activity

2021-02-12 17:22:42 -0500 received badge  Teacher (source)
2019-03-01 08:34:14 -0500 received badge  Nice Question (source)
2018-03-26 06:38:30 -0500 received badge  Taxonomist
2016-02-01 05:38:45 -0500 received badge  Famous Question (source)
2015-04-07 07:53:26 -0500 received badge  Famous Question (source)
2014-12-09 05:10:41 -0500 commented question Run .launch file with arg from .launch file

Can't you copy the openni launch file to your own folder and pass that argument inside it?

2014-12-01 05:46:51 -0500 commented answer rosjava over bluetooth: Android to PC (Ubuntu)

Hi there, When you pair the devices and make sure the Internet Access profile is enabled on Android, do you just connect to the PC as usual by inputting the ROS_MASTER_URI in the android app? When I do this, the android topics still don't appear when using rostopic list in the PC.

2014-11-14 16:44:14 -0500 received badge  Notable Question (source)
2014-11-14 11:02:13 -0500 commented question Android and ROS communication (Bluetooth or USB)

So I ended up connecting them through a hotspot created by another Android device, without any data connection involved, which finally did work. However, this is not an answer to my question, which was about USB or Bluetooth, so I'll just keep it here as an alternative solution.

2014-11-14 11:00:42 -0500 commented question Android and ROS communication (Bluetooth or USB)

Through USB I couldn't get it working any way, either through tethering or reverse tethering. WIth Bluetooth, I tried to use the Bluetooth Manager to share a connection from the PC, but also to no avail.

2014-11-14 11:00:42 -0500 received badge  Commentator
2014-11-13 16:19:01 -0500 received badge  Popular Question (source)
2014-11-13 06:25:25 -0500 asked a question catkin_make multiple names

Hi,

Lately I have been trying to use the catkin_make command, with no luck. It seems some of the packages in the stacks folder have been given the same name, and so I cannot compile correctly. Now, I can't remove these, as they are shared with some co-workers, and I do not know if they are using them. So, is there some other choice for me to be able to compile on my catkin_workspace?

This is the message from catkin_make:

/opt/ros/groovy/share/catkin/cmake/em/order_packages.cmake.em:23:
error: <type 'exceptions.RuntimeError'>: Multiple packages found with the same name
"camera_calibration_parsers":
- share/camera_calibration_parsers
- stacks/bumblebee2/image_common/camera_calibration_parsers
- stacks/image_common/camera_calibration_parsers
Multiple packages found with the same name "camera_info_manager":
- stacks/bumblebee2/image_common/camera_info_manager
- stacks/image_common/camera_info_manager
Multiple packages found with the same
name "image_common":
- stacks/bumblebee2/image_common/image_common
- stacks/image_common/image_common Multiple packages found with the same
name "image_transport":
- share/image_transport
- stacks/bumblebee2/image_common/image_transport
- stacks/image_common/image_transport Multiple packages found with the same
name "polled_camera":
- stacks/bumblebee2/image_common/polled_camera
- stacks/image_common/polled_camera Traceback (most recent call last):
File "/usr/bin/empy", line 3288, in
<module>
    if __name__ == '__main__': main()   File "/usr/bin/empy", line 3286, in
main
    invoke(sys.argv[1:])   File "/usr/bin/empy", line 3269, in invoke
    interpreter.wrap(interpreter.file, (file, name))   File "/usr/bin/empy",
line 2273, in wrap
    self.fail(e)   File "/usr/bin/empy", line 2264, in wrap
    apply(callable, args)   File "/usr/bin/empy", line 2337, in file
    self.safe(scanner, done, locals)   File "/usr/bin/empy", line 2379, in
safe
    self.parse(scanner, locals)   File "/usr/bin/empy", line 2399, in parse
    token.run(self, locals)   File "/usr/bin/empy", line 1410, in run
    interpreter.execute(self.code, locals)   File "/usr/bin/empy", line
2576, in execute
    exec statements in self.globals   File "<string>", line 17, in <module>
File
"/usr/lib/python2.7/dist-packages/catkin_pkg/topological_order.py",
line 111, in topological_order for path, package in find_packages(space).items():   File "/usr/lib/python2.7/dist-packages/catkin_pkg/packages.py",
line 92, in find_packages
    raise RuntimeError('\n'.join(duplicates))
RuntimeError: Multiple packages found with the same name
"camera_calibration_parsers":
- share/camera_calibration_parsers
- stacks/bumblebee2/image_common/camera_calibration_parsers
- stacks/image_common/camera_calibration_parsers
Multiple packages found with the same name "camera_info_manager":
- stacks/bumblebee2/image_common/camera_info_manager
- stacks/image_common/camera_info_manager
Multiple packages found with the same name "image_common":
- stacks/bumblebee2/image_common/image_common
- stacks/image_common/image_common Multiple packages found with the same name "image_transport":
- share/image_transport
- stacks/bumblebee2/image_common/image_transport
- stacks/image_common/image_transport Multiple packages found with the same name "polled_camera":
- stacks/bumblebee2/image_common/polled_camera
- stacks/image_common/polled_camera

Using ROS Groovy and Ubuntu 12.10.

Thanks for your attention.

2014-11-13 06:19:43 -0500 commented question ROS Hydro-held broken packages

Are you sure your computer has that version of python installed? Maybe the problem lies with your python installation then.

2014-11-13 06:15:12 -0500 received badge  Notable Question (source)
2014-11-13 05:53:40 -0500 commented question ROS Hydro-held broken packages

Have you tried manually installing the listed packages through apt-get?

2014-11-11 08:53:03 -0500 commented answer Android and ROS communication (Bluetooth or USB)

So, reverse tethering only worked when the notebook was connected to the internet. Otherwise, the topics simply don't appear to the master, even though the ROS android app does connect normally.

2014-11-11 08:50:46 -0500 received badge  Famous Question (source)
2014-11-07 03:26:20 -0500 received badge  Enthusiast
2014-11-06 18:50:02 -0500 received badge  Student (source)
2014-11-06 17:04:53 -0500 commented question Build package

Have you followed the beginner tutorials? They are quite good and well-built, and cover catkin as well: http://wiki.ros.org/ROS/Tutorials

2014-11-06 17:01:48 -0500 answered a question create catkin packages

Haven't you asked the same thing in here?

http://answers.ros.org/question/19691...

2014-11-06 16:59:37 -0500 answered a question Invoking "cmake" failed

It seems you do not have any C++ compilers installed. You must first install one to use catkin like this. Try opening up a terminal and then typing:

sudo apt-get install build-essential -y

Then the g++ compiler should be installed.

2014-11-06 09:17:51 -0500 commented answer Android and ROS communication (Bluetooth or USB)

Yes. When I try to tether the tablet with the laptop (Ubuntu), it appears as a Wired Connection. Then I disconnect from the other connections and connect only with this Wired Connection.

2014-11-06 09:12:06 -0500 received badge  Editor (source)
2014-11-06 09:11:31 -0500 received badge  Notable Question (source)
2014-11-06 09:10:13 -0500 commented answer Android and ROS communication (Bluetooth or USB)

The connection does show up in ifconfig. I should try your other suggestions, thank you.

2014-11-06 09:09:15 -0500 commented answer Android and ROS communication (Bluetooth or USB)

I tried both ways, but it still didn't work. They connect to each other and even show up in the connected devices list, but no nodes or topics from the android device appear to the master at the laptop.

2014-11-04 16:30:04 -0500 received badge  Popular Question (source)
2014-11-04 11:09:15 -0500 asked a question Android and ROS communication (Bluetooth or USB)

Hello,

I have been trying lately to connect a ROS core in my laptop with a ROS android app on my Galaxy Tab 2. Wi-fi is not possible because we do not have internet in the places where we need to move the robot. So I have tried to connect via USB, as I read that through USB tethering one could confirm this connection. However, I could not succeed in this, as the tablet does connect to the core, but does not appear to the master at the laptop (the topics and nodes from the android app do not appear as they do when using wi-fi).

Is there any more information about how to do this connection via USB? Or maybe through bluetooth, which I didn't find any at all.

Thanks.

2014-09-18 13:58:23 -0500 commented question Compile a node using the C++ sound_play API and catkin

If anyone gets into this situation, I have solved it by taking the headers (sound_play.h and SoundRequest.h) directly from the sound_play package and using them as part of the src of my package. This way, one is able to use their functions and the SoundClient class.

2014-09-16 19:27:50 -0500 received badge  Popular Question (source)
2014-09-16 18:21:15 -0500 received badge  Supporter (source)
2014-09-16 18:21:04 -0500 marked best answer Compile a node using the C++ sound_play API and catkin

Hello,

So, I have been trying for a moment to compile a catkin package written in C++ which would use the sound_play package API, but it seems never to find the header <sound_play sound_play.h="">, even though the sound_play package is installed and works normally through rosrun. I have tried to use rosmake in the sound_play package, and can see that the header is indeed in the right place, but still catkin can't find it. Maybe I am forgetting to add an include somewhere? This is ROS groovy I am using.

Thanks for any suggestions.

2014-09-16 18:21:04 -0500 commented answer Compile a node using the C++ sound_play API and catkin

Oh, how sad for me haha But thanks. Would you happen to know any other way for me to either synthesize voice or play sound files using catkin on groovy?

2014-09-16 18:19:43 -0500 received badge  Scholar (source)