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

claeslund's profile - activity

2012-05-21 10:02:28 -0500 received badge  Nice Answer (source)
2012-03-18 13:25:18 -0500 received badge  Teacher (source)
2012-03-16 01:38:37 -0500 answered a question Problem in wiimote_node.py

Yes I have had the same problem.

It is the libcwiid that comes with ROS Electric that is the problem. You can solve it be doing the following:

install libcwiid1 and libcwiid-dev with synaptic or apt.

go to

/opt/ros/electric/stacks/joystick_drivers/cwiid/cwiid/lib/

remove or rename

libcwiid.so libcwiid.so.1 libcwiid.so.1.0

Create the following symbolic links with “sudo ln -s”

libcwiid.so -> /usr/lib/libcwiid.so libcwiid.so.1 -> /usr/lib/libcwiid.so.1 libcwiid.so.1.0 -> /usr/lib/libcwiid.so.1.0

example: sudo ln -s libcwiid.so /usr/lib/libcwiid.so

This will solve your problem.