View previous topic :: View next topic |
Author |
Message |
*estudiante
Joined: 10 Aug 2015 Posts: 3
|
Dynamixel servos can be controlled with pic18F4550 |
Posted: Mon Aug 10, 2015 8:38 pm |
|
|
good morning everyone
I have a problem. I am a student, and I'm doing a project for semester, a robotic arm.
the problem is the following :
I would use Dynamixel servomotors especially the AX-12A, I want to control by means of pic18F4550 and using a program in CCS.
but I find information about it
anyone can help me please, an example, someone who has already tried
please help
thanks for your help |
|
|
dyeatman
Joined: 06 Sep 2003 Posts: 1934 Location: Norman, OK
|
|
|
*estudiante
Joined: 10 Aug 2015 Posts: 3
|
thanks for your prompt response |
Posted: Tue Aug 11, 2015 5:51 am |
|
|
Thanks friend, I will continue looking for information. Your contribution to been good.
Anything I tell my doubts here |
|
|
Ttelmah
Joined: 11 Mar 2010 Posts: 19545
|
|
Posted: Tue Aug 11, 2015 8:51 am |
|
|
It is controlled using standard serial at 5v. So it really is just a matter of sending it the bytes you need. #USE RS232 can drive it directly.
You just wire the TX and RX line on the UART together, and connect this to the data line on the device. Remember though that used like this you will receive every byte you send, which makes parsing the replies harder work. Alternatively a simple TTL buffer can be used to switch off the receive when sending, and implement buffer control on the PIC, as if you were using half duplex RS485. |
|
|
|