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

Using Dynamixel Motors on Kinetic

asked 2016-07-26 21:10:51 -0500

I am trying to use Dynamixel motors on ROS-kinect. I am giving this command.

khan@ubuntu:~$ sudo apt-get install ros-kinetic-dynamixel-motor

and getting this response. I am also trying to install it on Raspberry Pi 3 in which I have installed Jessie Kinetic and having the same response which is as follows.

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package ros-kinetic-dynamixel-motor

Your response is much appreciated. Thank you.

edit retag flag offensive close merge delete

2 Answers

Sort by ยป oldest newest most voted
1

answered 2016-07-31 14:14:58 -0500

Marcin Bogdanski gravatar image

updated 2016-08-25 09:24:21 -0500

I got dynamixel package running on Kinetic. It is not in apt-get repository yet.

Just create workspace, do git clone of dynamixel repository, then catkin_make. Don't forget to add appropriate source setup.sh line to your .bashrc and restart terminal/roscore before using. It should compile without errors on Ubuntu 16.04 (tested on PC only).

Create normal worksapce:

~$ mkdir -p ~/my_workspace/src
~$ cd ~/my_workspace/src
~$ catkin_init_workspace

Clone dynamixel source code and compile:

~$ git clone https://github.com/arebgun/dynamixel_motor.git
~$ cd ~/my_workspace
~$ catkin_make

Add your new worksapce to bashrc and source it (so it is visible to roslaunch)

~$ echo "source ~/my_workspace/devel/setup.bash" >> ~/.bashrc
~$ source ~/.bashrc

Run your shiny new dynamixel manager:

~$ roslaunch dynamixel_tutorials controller_manager.launch

Should work on Ubuntu 16.04

edit flag offensive delete link more

Comments

Oh, dear could you please share the link for that clone and method. I have no idea about it. Thank you so much.

Abdul Mannan gravatar image Abdul Mannan  ( 2016-08-19 07:07:18 -0500 )edit
1

Hi. Sorry for late reply, I was super busy over last couple days. See edited answer

Marcin Bogdanski gravatar image Marcin Bogdanski  ( 2016-08-25 09:24:31 -0500 )edit

It worked. :). Thank you so Much Marcin Bogdanski.

Abdul Mannan gravatar image Abdul Mannan  ( 2016-08-28 22:23:05 -0500 )edit
0

answered 2016-07-29 20:53:13 -0500

rajendrant gravatar image

Some of the packages have not yet been released in ROS kinetic. dynamixel-motor is one of them.

Your best bet is to use ubuntu 14.04 + ROS indigo.

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

edit flag offensive delete link more

Comments

Now dynamixel motor has been released right ?

aaditya_saraiya gravatar image aaditya_saraiya  ( 2017-09-13 02:24:04 -0500 )edit

Hi, I get this error with both kinetic and indigo ??

[FATAL] [WallTime: 1508101261.124235] pan_tilt_port: No motors found.
Abdu gravatar image Abdu  ( 2017-10-15 16:03:51 -0500 )edit

Binaries have been released in kinetic now (14.03.2018), you can install by doing: sudo apt install ros-kinetic-dynamixel-motor

Oscar Lima gravatar image Oscar Lima  ( 2018-03-14 10:14:46 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2016-07-26 21:10:51 -0500

Seen: 1,979 times

Last updated: Aug 25 '16