Legacy Forum: Preserving Nearly 20 Years of Community History - A Time Capsule of Discussions, Memories, and Shared Experiences.

Control 18 Ax12 with Usb2Dynamixel ?

Bioloid robot kit from Korean company Robotis; CM5 controller block, AX12 servos..
10 postsPage 1 of 1
10 postsPage 1 of 1

Control 18 Ax12 with Usb2Dynamixel ?

Post by MOHIT JINDAL » Fri Dec 31, 2010 9:29 am

Post by MOHIT JINDAL
Fri Dec 31, 2010 9:29 am

Can anyone tell me how to control all Ax12 with usb2dynamixel ?
Do you have any program for pc ?
How i can set angles in degree on dynamixel when i use it with usb2dynamixel :?: :roll: :cry:
Can anyone tell me how to control all Ax12 with usb2dynamixel ?
Do you have any program for pc ?
How i can set angles in degree on dynamixel when i use it with usb2dynamixel :?: :roll: :cry:
MOHIT JINDAL
Savvy Roboteer
Savvy Roboteer
Posts: 178
Joined: Wed Nov 10, 2010 7:43 am

Post by siempre.aprendiendo » Fri Dec 31, 2010 7:50 pm

Post by siempre.aprendiendo
Fri Dec 31, 2010 7:50 pm

siempre.aprendiendo
Savvy Roboteer
Savvy Roboteer
User avatar
Posts: 559
Joined: Wed Aug 08, 2007 9:13 pm
Location: Barcelona

Angle change and Time delay

Post by MOHIT JINDAL » Sat Jan 01, 2011 5:09 am

Post by MOHIT JINDAL
Sat Jan 01, 2011 5:09 am

How can I set angle and time delay programming between dynamixels ? :roll:
How can I set angle and time delay programming between dynamixels ? :roll:
MOHIT JINDAL
Savvy Roboteer
Savvy Roboteer
Posts: 178
Joined: Wed Nov 10, 2010 7:43 am

Post by Fritzoid » Mon Jan 03, 2011 1:10 pm

Post by Fritzoid
Mon Jan 03, 2011 1:10 pm

Robotis uses the SYNC_WRITE command to set the goal positions for up to 26 servos at once. A new command is issued every 7.825 ms. Each servo's motion is broken-down into increments proportional to the distance it needs to travel. This way all servos arrive at their destinations at the same time.

You will have to write control code that does something similar!
Robotis uses the SYNC_WRITE command to set the goal positions for up to 26 servos at once. A new command is issued every 7.825 ms. Each servo's motion is broken-down into increments proportional to the distance it needs to travel. This way all servos arrive at their destinations at the same time.

You will have to write control code that does something similar!
Fritzoid
Savvy Roboteer
Savvy Roboteer
User avatar
Posts: 331
Joined: Mon Dec 18, 2006 1:00 am

W

Post by UncleBob » Mon Jan 03, 2011 3:12 pm

Post by UncleBob
Mon Jan 03, 2011 3:12 pm

What are you trying to do? This determine whether u can use something simple like writing a robotask program.
What are you trying to do? This determine whether u can use something simple like writing a robotask program.
UncleBob
Savvy Roboteer
Savvy Roboteer
Posts: 398
Joined: Sun Dec 27, 2009 5:25 am

Re: Angle change and Time delay

Post by siempre.aprendiendo » Tue Jan 04, 2011 9:09 pm

Post by siempre.aprendiendo
Tue Jan 04, 2011 9:09 pm

MOHIT JINDAL wrote:How can I set angle and time delay programming between dynamixels ? :roll:


Mohit, I'm not sure where do you have "the problem"?

First, as uncleBob said, what do you want or need to do?

Second, which tool/language/API or any other way do you want to use to program it (Roboplus task,C,dynamixel, any language or tool from PC)?
MOHIT JINDAL wrote:How can I set angle and time delay programming between dynamixels ? :roll:


Mohit, I'm not sure where do you have "the problem"?

First, as uncleBob said, what do you want or need to do?

Second, which tool/language/API or any other way do you want to use to program it (Roboplus task,C,dynamixel, any language or tool from PC)?
siempre.aprendiendo
Savvy Roboteer
Savvy Roboteer
User avatar
Posts: 559
Joined: Wed Aug 08, 2007 9:13 pm
Location: Barcelona

Control bioloid from pc only.

Post by MOHIT JINDAL » Wed Jan 05, 2011 12:19 am

Post by MOHIT JINDAL
Wed Jan 05, 2011 12:19 am

I just want to use Usb2Dynamixel to control with pc not from any controller in visual c++ or visual basic. :lol:
I just want to use Usb2Dynamixel to control with pc not from any controller in visual c++ or visual basic. :lol:
MOHIT JINDAL
Savvy Roboteer
Savvy Roboteer
Posts: 178
Joined: Wed Nov 10, 2010 7:43 am

Post by billyzelsnack » Wed Jan 05, 2011 1:44 am

Post by billyzelsnack
Wed Jan 05, 2011 1:44 am

Then what you want is what siempre.aprendiendo posted as the first reply in this thread. Download the dynamixel SDK for windows and compile one of the example visual studio projects.
Then what you want is what siempre.aprendiendo posted as the first reply in this thread. Download the dynamixel SDK for windows and compile one of the example visual studio projects.
billyzelsnack
Savvy Roboteer
Savvy Roboteer
User avatar
Posts: 618
Joined: Sat Dec 30, 2006 1:00 am

Control 32 dynamixel ?

Post by MOHIT JINDAL » Thu Jan 06, 2011 12:26 am

Post by MOHIT JINDAL
Thu Jan 06, 2011 12:26 am

Roboplus supports only 25 dynamixels. If i want more than 30 dynamixels than I have to use 2 cm510 or Usb2Dynamixel is best fore more dynamixels ? :roll: :?: :o
Roboplus supports only 25 dynamixels. If i want more than 30 dynamixels than I have to use 2 cm510 or Usb2Dynamixel is best fore more dynamixels ? :roll: :?: :o
MOHIT JINDAL
Savvy Roboteer
Savvy Roboteer
Posts: 178
Joined: Wed Nov 10, 2010 7:43 am

Post by Fritzoid » Thu Jan 06, 2011 12:28 pm

Post by Fritzoid
Thu Jan 06, 2011 12:28 pm

Anything over 25 dynamixels is a big problem :?

If you control from a PC using the USB2Dynamixel then you will need to be hard-wired to the robot at all times.

Two controllers would be autonomous but you would need to split the work into two parts.

Maybe you can let the controller handle 24 of the servos and then handle the other 6 in the callback subroutine.
Anything over 25 dynamixels is a big problem :?

If you control from a PC using the USB2Dynamixel then you will need to be hard-wired to the robot at all times.

Two controllers would be autonomous but you would need to split the work into two parts.

Maybe you can let the controller handle 24 of the servos and then handle the other 6 in the callback subroutine.
Fritzoid
Savvy Roboteer
Savvy Roboteer
User avatar
Posts: 331
Joined: Mon Dec 18, 2006 1:00 am


10 postsPage 1 of 1
10 postsPage 1 of 1