Fork from Dynamixel AX12 Servo for MX64 use and not-finishi now

Dependents:   2014-Mx64 2014-mx64-test

Fork of AX12 by Chris Styles

This Library was Fork From Chris Styles's AX12 Library .

Dynamixel MX64 Servo

MX64 is like a new generation Dynamixel Servo Use TTL 2.0 bus, Half-duplex Serial just like a pro-version AX12 300

Quote:

The MX-64T Dynamixel Robot Servo Actuator is the newest generation of Robotis Dynamixel actuator; equipped with an onboard 32bit 72mhz Cortex M3, a contact-less magnetic encoder with 4x the resolution over the AX/RX series, and up to 3mpbs using the new TTL 2.0 bus. Each servo has the ability to track its speed, temperature, shaft position, voltage, and load.

Information

In cace AX12 you can use This Library

Import libraryAX12

new ax12 lib

You need this Dependence Library SerialHalfDuplex library too

Import librarySerialHalfDuplex

Serial Half Duplex implementation

Files at this revision

API Documentation at this revision

Comitter:
ppr2013G2
Date:
Tue May 27 13:58:34 2014 +0000
Parent:
6:d8984a551d92
Child:
8:bf333220b2f1
Commit message:
fix sample

Changed in this revision

MX64.h Show annotated file Show diff for this revision Revisions of this file
--- a/MX64.h	Tue May 27 06:42:41 2014 +0000
+++ b/MX64.h	Tue May 27 13:58:34 2014 +0000
@@ -58,12 +58,13 @@
  * 
  * int main() {
  * 
- *   MX64 mymx64 (p9, p10, 1);
+ *   //MX64 mymx64 (p9, p10, 1); //for LPC1768
+ *   MX64 mymx64 (PTD2, PTD3, 1); //for KL25Z
  *
  *   while (1) {
  *       mymx64.SetGoal(0);    // go to 0 degrees
  *       wait (2.0);
- *       mymx64.SetGoal(360);  // go to 300 degrees
+ *       mymx64.SetGoal(360);  // go to 360 degrees
  *       wait (2.0);
  *   }
  * }